Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Tanu Dua on Sep 14, 2009 03:07
open dhtmlx forum
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
Answer posted by dhxSupport on Sep 14, 2009 06:37
You should wait till all rows are rendered:
mygrid.laod(url,function(){
//all rows were loaded.
//any custom code here
})
Answer posted by Tanu Dua on Sep 14, 2009 21:42
How to use this when I am instantiating from table and not from XML.What to specify in the URL filed in this case ?