I wrote a page to replace an existing application using another product, so I was constrained in trying to replicate existing functionality. To whit: there are 2 updatable columns on a grid: a date and a quantity. Both update without confirmation on the event triggered when either of them is changed. Only problem is, I don't know how or where to give the update command so the edit mode closes after an update.
I am executing javascript on both so I could
I am executing javascript on both so I could
$find("<%= RadGrid1.ClientID %>").get_masterTableView().updateItem(editedRow);
where editedRow is set on the edit command but where do I put the command?