1 ajax.inc views_ajax_command_show_buttons()

Shows Save and Cancel buttons.

Return value

An array suitable for use with the ajax_render() function.:

Related topics

File

core/modules/views/includes/ajax.inc, line 136
Handles the server side AJAX interactions of Views.

Code

function views_ajax_command_show_buttons() {
  $command = array(
    'command' => 'viewsShowButtons',
  );
  return $command;
}