A key feature of the TileLayout widget is the fact that the user can modify the layout. This makes little sense if their changes are lost whenever they close the window.
I want to preserve those changes. It would be helpful if the resize event contained information about the new rowSpan and colSpan of the resized item.
Hello, Anna,
Thank you very much for the suggestion.
While this item gains popularity, you can obtain the colSpan and rowSpan by using the attribute in the e.item:
resize: function (e) {
var colSpan = e.item.css("grid-column-end").split(" ")[1];
var rowSpan = e.item.css("grid-row-end").split(" ")[1];
console.log(colSpan,rowSpan);
}
https://dojo.telerik.com/@bubblemaster/uHareKAB
Regards,
Alex Hajigeorgieva
Progress Telerik