\Kendo\UI\FormGrid
A PHP class representing the grid setting of Form.
Methods
cols
Defines the columns of the grid.
Returns
\Kendo\UI\FormGrid
Parameters
$value float|string
Example - using float
<?php
$grid = new \Kendo\UI\FormGrid();
$grid->cols(1);
?>
Example - using string
<?php
$grid = new \Kendo\UI\FormGrid();
$grid->cols('value');
?>
gutter
Defines the width of the gutters between the columns / rows.
Returns
\Kendo\UI\FormGrid
Parameters
$value float|string
Example - using float
<?php
$grid = new \Kendo\UI\FormGrid();
$grid->gutter(1);
?>
Example - using string
<?php
$grid = new \Kendo\UI\FormGrid();
$grid->gutter('value');
?>