Parallel Processing in DHTML Grid Table

I have a DHTML grid table which gets the data from the server side and fills the Grid table.

Since I have more process to be executed at server side, the table takes some time to render.

So instead of waiting for entire process to be completed at server side for each cell, is there any way to load data in parallel.

I mean first show show the table with spinning icon in each cell and replace data with each cell in ajax through parallel calls.

Please note this logic docs.dhtmlx.com/grid__loading_s … serverside will not be suitable for my functionality.

Unfortunately the parallel data loading is not supported.
You may try to use the prerendering feature together with the dynamic loading.
docs.dhtmlx.com/api__dhtmlxgrid … ering.html
In this case after the initial data portion will be loaded the additional request will be sent.