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