Private Sub EditingCore_RowUpdating(ByVal sender As Object, ByVal e As RowUpdatingEventArgs) e.Cancel = True End Sub
There may be certain times in your application in which you will need to cancel a WebDataGrid™ event. You may want to stop execution because of invalid data or cancel an event because it violates some kind of rule. Whatever the case may be, you can cancel most of the WebDataGrid events that end in "ing".
The following code shows you how to cancel WebDataGrid’s client-side and server-side RowUpdating events.
In Visual Basic:
Private Sub EditingCore_RowUpdating(ByVal sender As Object, ByVal e As RowUpdatingEventArgs) e.Cancel = True End Sub
In C#:
void EditingCore_RowUpdating(object sender, RowUpdatingEventArgs e) { e.Cancel = true; }
In JavaScript:
function WebDataGrid2_RowUpdating(sender, e) { e.set_cancel(true); }