\Kendo\UI\ListViewGrid

A PHP class representing the grid setting of ListView.

Methods

cols

Defines the columns of the grid.

Returns

\Kendo\UI\ListViewGrid

Parameters

$value float|string

Example - using float

<?php
$grid = new \Kendo\UI\ListViewGrid();
$grid->cols(1);
?>

Example - using string

<?php
$grid = new \Kendo\UI\ListViewGrid();
$grid->cols('value');
?>

gutter

Defines the width of the gutters between the columns / rows.

Returns

\Kendo\UI\ListViewGrid

Parameters

$value float|string

Example - using float

<?php
$grid = new \Kendo\UI\ListViewGrid();
$grid->gutter(1);
?>

Example - using string

<?php
$grid = new \Kendo\UI\ListViewGrid();
$grid->gutter('value');
?>

rows

Defines the rows of the grid.

Returns

\Kendo\UI\ListViewGrid

Parameters

$value float|string

Example - using float

<?php
$grid = new \Kendo\UI\ListViewGrid();
$grid->rows(1);
?>

Example - using string

<?php
$grid = new \Kendo\UI\ListViewGrid();
$grid->rows('value');
?>
In this article
Not finding the help you need?