Infrastructure. Specifies client-side editing behaviour of the C1GridView when current row is changed in client editing mode.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public enum UpdateMode
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Enumeration UpdateMode

Members

Member nameDescription
SingleRow Edits done in a row are sent to server automatically when current row is changed.
MultiRow Edits done in a row are not automatically sent. Developer should explicitly call CSOM Update() method to force sending the changes.

See Also