ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / RowEditing Event

In This Topic
    RowEditing Event
    In This Topic
    Occurs when the Edit button is clicked, but before the C1GridView instance handles the operation.
    Syntax
    'Declaration
     
    Public Event RowEditing As C1GridViewEditEventHandler
    public event C1GridViewEditEventHandler RowEditing
    Event Data

    The event handler receives an argument of type C1GridViewEditEventArgs containing data related to this event. The following C1GridViewEditEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets or sets the index of the row being edited.  
    Remarks
    To cancel the operation set the Cancel property of the C1GridViewEditEventArgs object to true. You must implement this event if the grid is not bound to a DataSource control.
    See Also