Hi,
I would like to run my own code in the OnEditCommand event for my Grid, but it always seems to
run the InPlace default form editing as well. I am using GridButtonColumn, CommandName=Edit
I would like HeaderText = Edit, Link = Edit, and run my code in OnEditCommand event.
Eg.
I would like to run my own code in the OnEditCommand event for my Grid, but it always seems to
run the InPlace default form editing as well. I am using GridButtonColumn, CommandName=Edit
I would like HeaderText = Edit, Link = Edit, and run my code in OnEditCommand event.
Eg.
Protected
Sub doEdit(ByVal Sender As Object, ByVal E As Telerik.Web.UI.GridCommandEventArgs)
If E.CommandName.ToUpper = "EDIT" Then
' -- run my code here
End If
End Sub
But as I said, the InPlace grid editing runs as well. How do I disable this?
Cheers,
DGL