Gets or sets a value that determines whether client editing is enabled.
Namespace:
C1.Web.UI.Controls.C1GridViewAssembly: C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)
Syntax
C# |
---|
[C1CategoryAttribute("Category.ClientSide")] [JsonAttribute(true, true, false)] [DefaultValueAttribute(false)] public virtual bool AllowClientEditing { get; set; } |
Visual Basic |
---|
<C1CategoryAttribute("Category.ClientSide")> _ <JsonAttribute(True, True, False)> _ <DefaultValueAttribute(False)> _ Public Overridable Property AllowClientEditing As Boolean Get Set |
Field Value
The default value is False.
Remarks
In client editing mode grid does not update underlying dataset automatically.
Developer should implement dataset update using
BeginRowUpdate, RowUpdating and
EndRowUpdated event handlers.