I have a radgrid with a combobox contained in an edit form template. On opening up a jquery popup I want to populate that combobox using a radgrid selectedindexchanged event.
I cannot get a reference to the item being edited, I have managed to use:
which gets me the first item being edited if its open, but no other items - I get a null object reference. I believe its due to the [0] index.
Is there a way to traverse the radgrid to find which item is currently being edited and access the Edit Form template that way?
I have tried:
which was suggested by another user but no good.
thanks.
I cannot get a reference to the item being edited, I have managed to use:
GridEditFormItem item = RadGrid2.MasterTableView.GetItems(GridItemType.EditFormItem)[0] as GridEditFormItem;
Is there a way to traverse the radgrid to find which item is currently being edited and access the Edit Form template that way?
I have tried:
foreach(GridDataItem gri in RadGrid2.EditItems)
which was suggested by another user but no good.
thanks.