I have 3 radgrids on a page that have the possibility of being in batch edit.
Would it be possible to have a button that saves all of the changes at once? The save button on each of the tables only saves that one table, and wipes all of the other changes.
Really the only thing I have so far are the three tables like so:
< telerik:RadGrid ID="RadGrid3" runat="server" AllowAutomaticDeletes="true" AllowAutomaticUpdates="true" OnItemDataBound="RadGrid1_ItemDataBound" OnItemDeleted="RadGrid3_ItemDeleted" MasterTableView-EditMode="Batch" MasterTableView-BatchEditingSettings-EditType="Cell" >
and of course the for all of them with the appropriate select/insert/update/delete queries
You can call the client-side API to save each grid. See http://www.telerik.com/help/aspnet-ajax/grid-batch-editing.html.
In JS, for some Save button, you can do something like
grid1.get_batchEditingManager().saveAllChanges();
for each grid.