As the title suggests is it possible to create a Tile Layout where each row has a different height property?
2 Answers, 1 is accepted
1
Nikolay
Telerik team
answered on 10 Feb 2022, 07:09 AM
Hello Thomas,
I am afraid this is not possible. The Kendo UI TileLayout is built upon the CSS grid and the separate tiles are positioned on a single or multiple rows but one row itself cannot have a different height than another one.
I hope this clarifies the case.
Regards,
Nikolay
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
answered on 31 Jul 2024, 07:26 PM
| edited on 31 Jul 2024, 07:42 PM
I have a bit of a work-around. So Row height is set for all tiles BUT you can specify rowSpan. So set the [rowHeight]=100 or whatever small value you want. Then you can set each tile to rowSpan 2, 3, 5, 8.
I'm doing this in my app, I set row height to 120, and my tiles are minimum row span of 2.
Edit: this was not flexible enough for me so I set my row height to 50 and use larger numbers for the row spans.