\Kendo\UI\SkeletonContainerGridItem
A PHP class representing the item setting of SkeletonContainerGridItems.
Methods
colSpan
A value that determines how many columns will the item span.
Returns
\Kendo\UI\SkeletonContainerGridItem
Parameters
$value float
Example
<?php
$item = new \Kendo\UI\SkeletonContainerGridItem();
$item->colSpan(1);
?>
colStart
A value that determines the start position of the item on the column axis.
Returns
\Kendo\UI\SkeletonContainerGridItem
Parameters
$value float
Example
<?php
$item = new \Kendo\UI\SkeletonContainerGridItem();
$item->colStart(1);
?>
rowSpan
A value that determines how many rows will the item span.
Returns
\Kendo\UI\SkeletonContainerGridItem
Parameters
$value float
Example
<?php
$item = new \Kendo\UI\SkeletonContainerGridItem();
$item->rowSpan(1);
?>
rowStart
A value that determines the start position of the item on the row axis.
Returns
\Kendo\UI\SkeletonContainerGridItem
Parameters
$value float
Example
<?php
$item = new \Kendo\UI\SkeletonContainerGridItem();
$item->rowStart(1);
?>
shape
Determines the shape of the item
Returns
\Kendo\UI\SkeletonContainerGridItem
Parameters
$value string
Example
<?php
$item = new \Kendo\UI\SkeletonContainerGridItem();
$item->shape('value');
?>