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