\Kendo\UI\FileManagerDialogsRenamePromptAction
A PHP class representing the action setting of FileManagerDialogsRenamePromptActions.
Methods
action
The callback function to be called after pressing the action button.
Returns
\Kendo\UI\FileManagerDialogsRenamePromptAction
Parameters
$value \Kendo\JavaScriptFunction
Example
<?php
$action = new \Kendo\UI\FileManagerDialogsRenamePromptAction();
$action->action(new \Kendo\JavaScriptFunction('function() { }'));
?>
primary
A boolean property indicating whether the action button will be decorated as primary button or not.
Returns
\Kendo\UI\FileManagerDialogsRenamePromptAction
Parameters
$value boolean
Example
<?php
$action = new \Kendo\UI\FileManagerDialogsRenamePromptAction();
$action->primary(true);
?>
text
The text to be shown in the action's button.
Returns
\Kendo\UI\FileManagerDialogsRenamePromptAction
Parameters
$value string
Example
<?php
$action = new \Kendo\UI\FileManagerDialogsRenamePromptAction();
$action->text('value');
?>