template String|Function

Defines a template that will be used to visualize the skeleton shapes. If both grid and template are defined the grid takes precedence.

Example - sets the width of the component

<div id="skeleton"></div>
<script>
$("#skeleton").kendoSkeletonContainer({
    width: 200,
    height: 200,
    animation: "pulse",
    template: "<span>Text</span><span data-shape-text>Text</span>"
});
</script>
In this article