\Kendo\UI\FileManagerDialogsMoveConfirm
A PHP class representing the moveConfirm setting of FileManagerDialogs.
Methods
addAction
Adds one or more FileManagerDialogsMoveConfirmAction to the FileManagerDialogsMoveConfirm.
Returns
\Kendo\UI\FileManagerDialogsMoveConfirm
Parameters
$value[, $value2, ...] \Kendo\UI\FileManagerDialogsMoveConfirmAction|array
Example - using \Kendo\UI\FileManagerDialogsMoveConfirmAction
<?php
$moveConfirm = new \Kendo\UI\FileManagerDialogsMoveConfirm();
$action = new \Kendo\UI\FileManagerDialogsMoveConfirmAction();
$primary = true;
$action->primary($primary);
$moveConfirm->addAction($action);
?>
Example - using array
<?php
$moveConfirm = new \Kendo\UI\FileManagerDialogsMoveConfirm();
$primary = true;
$moveConfirm->addAction(array('primary' => $primary));
?>
Example - adding more than one FileManagerDialogsMoveConfirmAction
<?php
$moveConfirm = new \Kendo\UI\FileManagerDialogsMoveConfirm();
$first = new \Kendo\UI\FileManagerDialogsMoveConfirmAction();
$second = new \Kendo\UI\FileManagerDialogsMoveConfirmAction();
$moveConfirm->addAction($first, $second);
?>
closable
Specifies whether a close button should be rendered at the top corner of the dialog.
Returns
\Kendo\UI\FileManagerDialogsMoveConfirm
Parameters
$value boolean
Example
<?php
$moveConfirm = new \Kendo\UI\FileManagerDialogsMoveConfirm();
$moveConfirm->closable(true);
?>
content
Sets the HTML content of the FileManagerDialogsMoveConfirm.
Returns
FileManagerDialogsMoveConfirm
$value string
Example
<?php
$moveConfirm = new \Kendo\UI\FileManagerDialogsMoveConfirm();
$moveConfirm->content('<strong>Content</strong>');
?>
title
The text in the dialog title bar.
Returns
\Kendo\UI\FileManagerDialogsMoveConfirm
Parameters
$value string
Example
<?php
$moveConfirm = new \Kendo\UI\FileManagerDialogsMoveConfirm();
$moveConfirm->title('value');
?>
width
Specifies width of the dialog.
Returns
\Kendo\UI\FileManagerDialogsMoveConfirm
Parameters
$value float
Example
<?php
$moveConfirm = new \Kendo\UI\FileManagerDialogsMoveConfirm();
$moveConfirm->width(1);
?>