I have a grid with a nested view template. Inside the nested view I have a checkbox. When the value changes, I need to check a value in the parent item's data. How do I get this value?
Using the code below I can get the parent Item, but its DataItem is null.
What am I missing?
Using the code below I can get the parent Item, but its DataItem is null.
GridNestedViewItem nesteditem = (GridNestedViewItem)button.NamingContainer;
GridDataItem item = nesteditem.ParentItem;
What am I missing?