I am having a pretty big amount of data by my standards (200 rows of data) and to load all of them at once is taking a while and most users are not digging my 'loading the awesome' thing i have going on in my table which takes around 5 or more seconds.
I have looked around for a solution and found datatable's deferred rendering http://www.datatables.net/release-datatables/examples/ajax/defer_render.html
Problem is i do not know how it exactly works(but i think datatables is loading more records in response to a user action.i.e scrolling). My idea of loading the 200 rows is to first load the first 10 records and then silently load 10 records at each go until the entire 200 records are loaded.
Is it possible to split the data this way?.