Check documentation for the latest version of dhtmlxSuite enableDistributedParsing DHTMLX Docs

enableDistributedParsing

enables/disables distributed parsing (rows are parsed portion by portion with some timeout)

void enableDistributedParsing(boolean mode,number count,number time);
modebooleantrue/false
countnumbercount of nodes parsed by a step (optional, 10 by default)
timenumbertime between parsing counts in milliseconds (optional, 250 by default)

Available only in PRO Edition

Example

//enable distributed parsing mode
myGrid.enableDistributedParsing(true);
//enable distributed parsing mode, parse 50 nodes by one step, 
//parse nodes with a 2 seconds delay
myGrid.enableDistributedParsing(true,50,2000);

Back to top