Hi there;
I have the following attached to a toolbar button client side:
function
saveChangesInGrid(sender, args) {
var
grid = $find(
'<%=gridData.ClientID%>'
);
grid.get_batchEditingManager().saveChanges(grid.get_masterTableView());
}
I still want the postback for the button to fire, though, as I need to handle other areas of the form server-side. Any suggestions?
Thanks,
Jason