Hi,
I am working on TileManager with the inspiration from your blog post. I have a specific requirement in which the tiles need to be re-sized depending on user action. I was able to show tiles and their content, but when I tried to update tile's size, it didn't work as expected. This is my code:
function ResizeTiles(_percentage) { var dataSource = @Html.Raw(Json.Encode(Model));
var percentage = "'" + _percentage + "%'"; $('#dashboard').igTileManager({ layoutConfiguration: { gridLayout: { columnWidth: percentage, columnHeight: percentage, marginLeft: 10, marginTop: 10, cols: 1 } }, dataSource: dataSource, contentTemplate: '<img src="${Link}" />' }); $('#dashboard').igTileManager('reflow'); }
After ResizeTiles() was called, all tiles disappeared. Please let me know if I did something wrong. Thanks in advance.
Hello Tangailam,
Could you specify which version of IgniteUI are you using? In particular 13.1 or 13.2?
Sincerly,Daniel
Hi Daniel,
My code is running on 13.2.
Thank you.