function DisplayPluginBase::ajaxEnabled
Whether the display is actually using AJAX or not.
Return value
bool
Overrides DisplayPluginInterface::ajaxEnabled
1 call to DisplayPluginBase::ajaxEnabled()
- DisplayPluginBase::preExecute in core/
modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php  - Sets up any variables on the view prior to execution.
 
File
- 
              core/
modules/ views/ src/ Plugin/ views/ display/ DisplayPluginBase.php, line 292  
Class
- DisplayPluginBase
 - Base class for views display plugins.
 
Namespace
Drupal\views\Plugin\views\displayCode
public function ajaxEnabled() {
  if ($this->usesAJAX()) {
    return $this->getOption('use_ajax');
  }
  return FALSE;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.