\Kendo\UI\GridSelectable
A PHP class representing the selectable setting of Grid.
Methods
dragToSelect
When set to true, the user can drag to select multiple Grid rows or cells.
Returns
\Kendo\UI\GridSelectable
Parameters
$value boolean
Example
<?php
$selectable = new \Kendo\UI\GridSelectable();
$selectable->dragToSelect(true);
?>
ignoreOverlapped
When set to true, visually hidden elements that match by the filter option criteria but are overlapped by other elements that also can be selected, are ignored.
Returns
\Kendo\UI\GridSelectable
Parameters
$value boolean
Example
<?php
$selectable = new \Kendo\UI\GridSelectable();
$selectable->ignoreOverlapped(true);
?>
mode
Can be set to the following string values: "row" - the user can select a single row.; "cell" - the user can select a single cell.; "multiple, row" - the user can select multiple rows. or "multiple, cell" - the user can select multiple cells..
Returns
\Kendo\UI\GridSelectable
Parameters
$value string
Example
<?php
$selectable = new \Kendo\UI\GridSelectable();
$selectable->mode('value');
?>