Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Sorting is not working
posted

When we click on any column header for sorting in grid(WebHierarchicalDataGrid) getting following error

Server does not respond.

We set callback timeout as follows

grid._callbackManager.setTimeout(300000);

This issue occurs only we have number columns with good amount of data. 

Grid's OnColumnSorted event has code that fetch data based on clicked column for sorting.

Is there any limitation of grid like number of columns or specific column type are not supported or limitation of amount of data (size in KB or MB).

Kindly provide solution ASAP.

Parents
No Data
Reply
  • 16310
    Offline posted

    Hello Kalpesh,

    There are no set limitations, however it is expected that at some point there will be issues handling enormous sets of data. In order to get more insight could you explain why do you fetch data on columnSorted event since at that time data is sorted and is available ? Obviously this code in columnSorted is taking too long to execute and as expected you receive a Server does not respond alert on the client.

    I suggest that you review and minimize it and also rebuild this part of your application if you do not really need to fetch data on columnSorted event.

    I hope this helps.

Children