\Kendo\UI\TreeListMessagesCommands
A PHP class representing the commands setting of TreeListMessages.
Methods
cancel
Defines the text of the Cancel Changes button that cancels all data modifications.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->cancel('value');
?>
canceledit
Defines the text of the Cancel button that discards the changes during editing.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->canceledit('value');
?>
create
Defines the text of the Add new record button that adds new data rows.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->create('value');
?>
createchild
Defines the text of the Add child record button that adds new child data rows.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->createchild('value');
?>
destroy
Defines the text of the Delete button that deletes a data row.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->destroy('value');
?>
edit
Defines the text of the Edit button that shows the editable fields for the row.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->edit('value');
?>
excel
Defines the text of the Export to Excel button that exports the widget data in spreadsheet format.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->excel('value');
?>
Defines the text of the Export to PDF button that exports the widget data in PDF format.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->pdf('value');
?>
save
Defines the text of the Save Changes button that saves modifed data rows.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->save('value');
?>
search
Allows the customization of the placeholder text in the treelist search panel.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->search('value');
?>
update
Defines the text of the Update button that applies the changes during editing.
Returns
\Kendo\UI\TreeListMessagesCommands
Parameters
$value string
Example
<?php
$commands = new \Kendo\UI\TreeListMessagesCommands();
$commands->update('value');
?>