Hi,
In my html page I use a grid with virtual scroll:
Html.Kendo().Grid<dynamic>(). ....
.DataSource(dataSource => dataSource
.Ajax()
.Read( read => read.Action(....))
.Scrollable(scroll =>
{
scroll.Height("100%");
scroll.Virtual(true);
}) ...
Everything works fine except for :
- a special request (filter)
- Only on IE11 (It's OK for Chrome, FF & Edge)
In this case, my browser freezes.
I launched an analysis and it would seem that there is an javascript infinite loop (see attachment)
If I remove the virtual scroll, everything works properly
Regards