Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Oct 20, 2008 10:10
open dhtmlx forum
How can I get dataProcessor form grid object?

Something like mygrid.getDataProcessor ?

I need this for custom grid implementation
Answer posted by Support on Oct 21, 2008 01:25
Grid has not any reference to the dataprocessor ( they linked by events , so need not direct references ) 
You can made custom reference while creating dataprocessor

var dp = new DataProcessor(url);
dp.init(mygrid);
mygrid.dataProcessor = dp; //storing reference