Rank: Member Groups: Member
Joined: 3/7/2017 Posts: 20
|
I have a fairly large grid, and it takes a few seconds to load up with data from a database, and to save it back to the database. Are there any tips to increasing the performance of the grid?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,225
|
Hi,
The best way is to reduce the size of the data loaded into the Grid. The first priority should be reducing number of columns because the Grid is more optimized for rows than for columns. So usually if you can reduce the number of columns it should have a visible impact on performance.
If it is still too slow after reducing number of columns or reducing columns is not an viable option for you, consider using the Grid in Callback mode with a paging enabled. That way at any given time the Grid is only loading a single page of data. This should improve the performance considerably.
Hope this helps. Please feel free to let us know if you still have any questions.
Thanks!
|