\Kendo\UI\GridMessagesCommands
A PHP class representing the commands setting of GridMessages.
Methods
cancel
Defines the text of the "Cancel Changes" button located in the toolbar of the widget.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->cancel('value');
?>
canceledit
Defines the text of the "Cancel" button that is rendered in inline or popup editing mode.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->canceledit('value');
?>
create
Defines the text of the "Add new record" button located in the toolbar of the widget.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->create('value');
?>
destroy
Defines the text of the "Delete" button rendered in inline or popup editing mode.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->destroy('value');
?>
edit
Defines the text of the "Edit" button that is rendered in inline or popup editing mode.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->edit('value');
?>
excel
Defines the text of the "Export to Excel" button of the grid toolbar.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->excel('value');
?>
save
Defines the text of the "Save Changes" button located in the toolbar of the widget.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->save('value');
?>
search
Allows the customization of the placeholder text in the grid search panel.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->search('value');
?>
update
Defines the text of the "Update" button that is rendered in inline or popup editing mode.
Returns
\Kendo\UI\GridMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\GridMessagesCommands();
$commands->update('value');
?>