public function ViewExecutable::setAjaxEnabled in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::setAjaxEnabled()
Sets whether or not AJAX should be used.
If AJAX is used, paging, tablesorting and exposed filters will be fetched via an AJAX call rather than a page refresh.
Parameters
bool $use_ajax: TRUE if AJAX should be used, FALSE otherwise.
File
- core/
modules/ views/ src/ ViewExecutable.php, line 623 - Contains \Drupal\views\ViewExecutable.
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\viewsCode
public function setAjaxEnabled($ajax_enabled) {
$this->ajaxEnabled = (bool) $ajax_enabled;
}