Hi
i have to lode more then 3 LAC data in grid view on same time.
Which is the best way to lode 3LAC data without paging.
Regards,
Vedant
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Deepak SainiPosted Apr 6, 2015, 8:32 AM
as my point of u add the update panel on this grid and set the progress bar on this and give only scroll on this and manage your data
Ramesh MaruthiPosted Apr 6, 2015, 8:31 AM
Something like virtual Scrolling works in your scenario, when I used to work with Kendo Grids, we use to have property virtual paging : true
The virtual scrolling feature of the Grid can be customized to work similar to the paging feature. Move the vertical scrollbar up or down to navigate through the pages of the Grid, which will be loaded on demand.
To enable the virtual scrolling with paging feature set the ScrollingSettings.EnableVirtualScrolling and ScrollingSettings.UsePagingForVirtualScrolling properties to true. Also, you need to make sure the vertical scrolling feature is enabled, by setting the ScrollingSettings.ScrollHeight property. The retrieving of records from the database is performed in the event handler of the DataSourceNeeded event.
Please find the below Url ;
http://www.aspsnippets.com/Articles/Load-on-demand-data-in-GridView-on-scroll-using-ASPNet-and-jQuery-AJAX.aspx