<kendo:tileLayout-container>
An array with objects representing the settings of the layout items.
Example
<kendo:tileLayout-containers>
<kendo:tileLayout-container></kendo:tileLayout-container>
</kendo:tileLayout-containers>
Configuration Attributes
bodyTemplate java.lang.String
The template which renders as content for the tile item.
Example
<kendo:tileLayout-container bodyTemplate="bodyTemplate">
</kendo:tileLayout-container>
colSpan float
A value that determines how many columns will the tile item span.
Example
<kendo:tileLayout-container colSpan="colSpan">
</kendo:tileLayout-container>
rowSpan float
A value that determines how many rows will the tile item span.
Example
<kendo:tileLayout-container rowSpan="rowSpan">
</kendo:tileLayout-container>
Configuration JSP Tags
kendo:tileLayout-container-header
Holds the configuration settings for the header.
More documentation is available at kendo:tileLayout-container-header.
Example
<kendo:tileLayout-container>
<kendo:tileLayout-container-header></kendo:tileLayout-container-header>
</kendo:tileLayout-container>
Event Attributes
bodyTemplate String
The template which renders as content for the tile item.
Example
<kendo:tileLayout-container bodyTemplate="handle_bodyTemplate">
</kendo:tileLayout-container>
<script>
function handle_bodyTemplate(e) {
// Code to handle the bodyTemplate event.
}
</script>
Event Tags
kendo:tileLayout-container-bodyTemplate
The template which renders as content for the tile item.
Example
<kendo:tileLayout-container>
<kendo:tileLayout-container-bodyTemplate>
<script>
function(e) {
// Code to handle the bodyTemplate event.
}
</script>
</kendo:tileLayout-container-bodyTemplate>
</kendo:tileLayout-container>