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