\Kendo\UI\FileManagerDialogsMoveConfirmAction

A PHP class representing the action setting of FileManagerDialogsMoveConfirmActions.

Methods

action

The callback function to be called after pressing the action button.

Returns

\Kendo\UI\FileManagerDialogsMoveConfirmAction

Parameters

$value \Kendo\JavaScriptFunction

Example

<?php
$action = new \Kendo\UI\FileManagerDialogsMoveConfirmAction();
$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\FileManagerDialogsMoveConfirmAction

Parameters

$value boolean

Example

<?php
$action = new \Kendo\UI\FileManagerDialogsMoveConfirmAction();
$action->primary(true);
?>

text

The text to be shown in the action's button.

Returns

\Kendo\UI\FileManagerDialogsMoveConfirmAction

Parameters

$value string

Example

<?php
$action = new \Kendo\UI\FileManagerDialogsMoveConfirmAction();
$action->text('value');
?>
In this article
Not finding the help you need?