I have a Tabulator Grid, and use Ebay's jsonpipe library to load the JSON from my server in a chunked format, so I can begin filling my datagrid immediately even when the results are very large. The method for getting this kind of data into Tabulator is
table.addRow(row, true);
This works fine, but you have to add a setTimeout for each record or the user sees nothing for a few seconds. But the setTimeout slows things down - even when really small - and even loading from a local file takes way too long to load 800 records.
Has anyone figured out a way to read chunked JSON directly in Tabulator? Their existing Ajax methods do not included streaming/chunked newline encoded JSON.
I'd like to add that the data is ALREADY chunked from my server - it is sent streaming to begin with, there is no need for Ajax to make repeated requests as it apparently does when you set use
ajaxProgressiveLoad:"load", //sequentially load all data into the table