containers.headerObject

Holds the configuration settings for the header.

Example

<div id="tilelayout"></div>
<script>
$("#tilelayout").kendoTileLayout({
    containers: [
        {
            colSpan: 2,
            rowSpan: 1,
            bodyTemplate: "<p>Container with header configuration</p>",
            header: {
                template: "<h3>Custom Header</h3>"
            }
        }
    ],
    columns: 4
});
</script>