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

In This Topic
    AllowClientEditing Property
    In This Topic
    A value indicating whether client editing is enabled.
    Syntax
    'Declaration
     
    Public Overridable Property AllowClientEditing As System.Boolean
    public virtual System.bool AllowClientEditing {get; set;}

    Property Value

    The default value is False.
    Remarks

    In client-side editing mode underlying dataset can be automatically updated only if the control is bound to DataSource control. Otherwise developer should implement dataset update using BeginRowUpdate, RowUpdating and EndRowUpdated event handlers.

    Note: only visible data are available on the client, hence after refresh values of the hidden columns used in UPDATE statement can be set to NULL.

    See Also