DHTMLX Docs & Samples Explorer

enableDistributedParsing(mode, count, time)

Required library edition: This method requires Professional Edition of the DHTMLX library
Required library file: dhtmlxgrid.js

enable/disable distributed parsing (rows paresed portion by portion with some timeout)

  • mode - true/false
  • count - count of nodes parsed by one step (optional, 10 by default)
  • time - time between parsing counts in milli seconds (optional, 250 by default)
   //enable distributed parsing mode
   mygrid.enableDistributedParsing(true);
   //enable distributed parsing mode, parse 50 nodes by one step, parse nodes with 2 seconds delay
   mygrid.enableDistributedParsing(true,50,2000);

Note this method is incompatible with enableSmartRendering and enablePaging methods

See also: enableSmartRendering