My grid is bound to an ObservableCollection that has 2 levels of data in it.
the grid is displaying properly but twhen I clink on the record Selector the event never fires.
I need to know which row is selected/Active to send back info to my ViewModel.
Is there a way to trun off the NestedDatadisplay (like the WPF grid). this would be Ideal but I can't find the corresponding property to do so.
Hi,
Are you listening to the RowSelectorClicked event? This event fires on all levels.
There is also the ActiveCellChanged event which you can use, as the active cell can be changed by a user clicking on a cell or using the keyboard.
As for your other question. What do you mean by Turn of the NestedDataDisplay? You don't want a hierarchy?
-SteveZ
Yes I am listiening to the row selector clicked Event.
the ActiveCell changed event does fire but if I click on the row selector and it expands the 2nd level of data the active cell changed event does not fire so I hacve the wrong item as being "my selected Item" from the grid. In the WPF version of the Xam Grid you can turn off the displayed hieracrchy and only display the top level. We wnat to be able to do that here as well.