Can I use fiterBy with dhtmlgrid.enableDistributedParsing

Hi ,



I am using dhtmlxGridfromTable in which I have enabled distributed Parsing along with filterBy and groupBy . But , filterBy is not working correctly and giving me wrong results along with the JS error :



this._get_cell_value(this.rowsBuffer[i], column) has no properties.



Could you please let me know how to rectify this.I can’t user dynamic smart rendering as grid is instantiated from table

You should wait till all rows are rendered:
mygrid.laod(url,function(){
//all rows were loaded.
//any custom code here
})

How to use this when I am instantiating from table and not from XML.What to specify in the URL filed in this case ?