This is a migrated thread and some comments may be shown as answers.

Infinite loop in IE using a virtual scroll in a grid

1 Answer 97 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Syleps
Top achievements
Rank 1
Veteran
Syleps asked on 11 Aug 2018, 06:47 AM

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

 

1 Answer, 1 is accepted

Sort by
0
Milena
Telerik team
answered on 14 Aug 2018, 12:05 PM
Hello,

It is hard to determine the exact reason for the unwanted behavior based on the provided information. Can you replicate the issue on our live demos:
https://demos.telerik.com/aspnet-mvc/grid/virtualization-remote-data

In case it is needed a specific configuration, please provide a small runnable project and exact steps for reproduce. Thus we will be able to investigate the issue on our end and come back to you with more straightforward information.

Regards,
Milena
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Grid
Asked by
Syleps
Top achievements
Rank 1
Veteran
Answers by
Milena
Telerik team
Share this question
or