Several grids and several DataProcessor

Hi,
I included several grids in a tabbar. Each grid has its own DataProcessor object. When I select a tab, I can find the object associated with the grid but I do not find how to get the DataProcessor attached to the grid … any idea ?

Best regards, Frédéric.

There is no official API for such task.
You can store a reference in moment of dp initialization.

var dp = new DataProcessor grid.dataprocessor = dp;
and later use grid.dataprocessor to access the related dataprocessor object

Thank you Stanislav …