Hi-
I have all my grid items in editmode, and I'd like to know how to apply changes to an InsertedItem when someone clicks on "OK" somewhere else in the page. Right now I'm doing a loop over these to get the rest of the items:
But when I am inserting a new item I'm not getting access to it. Should I manually invoke "Update" from code-behind as part of the page submit event (and how can I do that?), or should I try to somehow read the new values in the controls for the InsertItem without invoking an "update"?
Thanks,
-Mike
I have all my grid items in editmode, and I'd like to know how to apply changes to an InsertedItem when someone clicks on "OK" somewhere else in the page. Right now I'm doing a loop over these to get the rest of the items:
foreach (GridDataItem item in radGrid.Items)
{
// do something with the items
}
But when I am inserting a new item I'm not getting access to it. Should I manually invoke "Update" from code-behind as part of the page submit event (and how can I do that?), or should I try to somehow read the new values in the controls for the InsertItem without invoking an "update"?
Thanks,
-Mike