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