\Kendo\UI\DrawerMini
A PHP class representing the mini setting of Drawer.
Methods
template
Defines a specific template for the Kendo UI Drawer when in mini mode.
Returns
\Kendo\UI\DrawerMini
Parameters
$value string
Example
<?php
$mini = new \Kendo\UI\DrawerMini();
$mini->template('value');
?>
width
Defines a specific width for the Kendo UI Drawer when in mini mode.
Returns
\Kendo\UI\DrawerMini
Parameters
$value float
Example
<?php
$mini = new \Kendo\UI\DrawerMini();
$mini->width(1);
?>