Skip to content

Instantly share code, notes, and snippets.

@NickersF
Created September 16, 2021 19:49
Show Gist options
  • Save NickersF/833848fa8b9e29127514ac64094808b4 to your computer and use it in GitHub Desktop.
Save NickersF/833848fa8b9e29127514ac64094808b4 to your computer and use it in GitHub Desktop.
Tile Layout Sample
$("#tilelayout").kendoTileLayout({
containers: [{
colSpan: 6,
rowSpan: 4,
header: {
text: "Item three"
},
bodyTemplate: kendo.template($("#MapTemplate").html())
}, {
colSpan: 3,
rowSpan: 4,
header: {
text: "Item four"
},
bodyTemplate: "Item four body"
}, {
colSpan: 3,
rowSpan: 4,
header: {
text: "Item four"
},
bodyTemplate: "Item four body"
}],
columns: 12,
rowsHeight: "25%",
height: "100%",
reorderable: true
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment