I can get to the Editing Core items of the gridView (primary Band) by doing:
grid.get_gridView().get_behaviors().get_editingCore()._behaviors._rowAdding
but how do I get this for the child bands???
Hi RBonser,
You are accessing this behavior off the top grid. You just need to get access to a row island first.
grid.get_gridView().get_rows().get_row(0).get_rowIslands()[0].get_behaviors().get_editingCore().get_behaviors().get_rowAdding();
regards,David Young
Okay, but how do I know which rowIsland I have clicked on???