function hook_views_ajax_data_alter

3.x views.api.php hook_views_ajax_data_alter(&$commands, $view)

This hook allows to alter the commands which are used on a views ajax request.

Parameters

$commands: An array of ajax commands

$view view: The view which is requested.

Related topics

1 invocation of hook_views_ajax_data_alter()
views_ajax in includes/ajax.inc
Menu callback to load a view via AJAX.

File

./views.api.php, line 1152
Describe hooks provided by the Views module.

Code

function hook_views_ajax_data_alter(&$commands, $view) {
  // Replace Views' method for scrolling to the top of the element with your
  // custom scrolling method.
  foreach ($commands as &$command) {
    if ($command['method'] == 'viewsScrollTop') {
      $command['method'] .= 'myScrollTop';
    }
  }
}