I am trying to incorporate the following function into the 'Delete' functionality of the RadGridView:
Protected
Sub RadGridApprovers_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGridApprovers.ItemCommand
If e.CommandName = "Delete" Then
'do something
End If
End Sub
My question is: does the delete happen first or whatever commands I includein this function?
thank you