Hi,
I am trying to create a solution where I can enter data in a nested grid using DevExpress 7.2.
I have a grid controlled by BudgetLineXGBM, and I have added a subgrid controlled by BudgetLineItemXGBM using the following code:
BudgetLineItemXGBM.GridView = BudgetLineXGBM.AddRelationView("Item", "BudgetLineItems")
In order to get a NewItemRow in the subgrid I've added the following:
BudgetLineItemXGBM.GridView.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom
So far so good. I get a NewItemRow in the subgrid as expected, BUT, I can not enter new rows. When I start writing in the NewItemRow, I would have expected the BudgetLineItemBS.AddingNew to fire (BudgetLineItemBS is bound to BudgetLineItemXGBM), but it does not fire, as far as I can see.
Am I missing something?
All help appriciated.
Best regards
Jesper Carstensen