Categories | Question details Back To List | ||
display grid before parsing is done Hi, In the commercial version, I would like to display the grid before all xml records have been parsed. For larger set of data, sometimes it takes time to parse all the records. Is there any way to show some records in the grid before the parsing is completed? Thanks. Andy Answer posted by dhxSupport on Jun 15, 2009 08:56 You can use distributed parsing. In this case, the grid will be shown right after the first portion of data is parsed, although it continues parsing other portions in async mode. Changing number of records per portion and delay (in milliseconds), you can change the speed of loading: grid.enableDistributedParsing(mode,count,time); The parameters here are: mode(true|false) - enable or disable distributed parsing; count - count of nodes parsed by one step (10 by default); time - time between parsing counts in milliseconds (the 250 by default). |