So, I have a RadGrid with a typical edit arrangement that was working... and now isn't. Never firing the UpdateCommand event, set a breakpoint there and it's not being reached. Making me crazy because it had been working just fine and I can't think of anything I've done that would cause it. When I click edit, the form opens just fine, the cancel button works but the update command never fires. In the grid I have:
OnUpdateCommand="pendingVehiclesRadGrid_UpdateCommand"
And in my code behind I have:
protected void pendingVehiclesRadGrid_UpdateCommand(object source, GridCommandEventArgs e)
{
blah blah
}
Seems pretty straightforward but as I say... nothing. I'd be, as always, deeply grateful if someone with fresh eyes can make a suggestion.
Thank you!
