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???
Hello RBonser,
Let me know if you need further assistance with this question.
It depends in what event handler you are executing this code.
Most of the embeded grid events have "object" parameter that will return some part of the grid with you can use to get the band index that you need.