grid.items.rowStart Number
A value that determines the start position of the item on the row axis.
Example - set the rowStart for an item
<div id="skeleton"></div>
<script>
$("#skeleton").kendoSkeletonContainer({
animation: "wave",
height: 200,
width: 340,
grid: {
items: [
{
colStart: 1,
colSpan: 1,
rowStart: 2,
rowSpan: 2,
shape: "rectangle"
},
{
colStart: 2,
colSpan: 1,
rowStart: 1,
rowSpan: 1,
shape: "circle"
}
],
columns: 4,
rows: 4
},
animation: "wave"
});
</script>