Hey i am trying to use a specific gridview from obout toolkit and i am wondering if any chance someone using it as well and knows how to get to the "Edit" command? for example in the regular asp.net gridview all i had to do is use funciton :
Protected Sub approvalGrid_RowCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles approvalGrid.RowCommand
and then something like
If (e.CommandName = "Edit") Then
.
.
.
but there is no such thing with obout gridview and i been spending half a day trying to find out how can
i access this event when a user clicks the Edit
-button on the gridview
.