Use the members of this enumeration to determine the actions that can be performed by the C1GridView control using callbacks.

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

Syntax

C#
[EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1FlagsEnumUITypeEditor, C1.Web.UI.Design.2", 
	typeof(UITypeEditor))]
[FlagsAttribute]
public enum CallbackOptions
Visual Basic
<EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1FlagsEnumUITypeEditor, C1.Web.UI.Design.2",  _
	GetType(UITypeEditor))> _
<FlagsAttribute> _
Public Enumeration CallbackOptions

Members

Member nameDescription
None All actions are performed via postback.
ColMove Column moving is performed via callbacks.
Editing Editing is performed via callbacks.
Expanding Group expanding\collapsing is performed via callbacks.
Paging Paging is performed via callbacks.
Selection Row selection is performed via callbacks.
Sorting Sorting is performed via callbacks.
Filtering Filtering is performed via callbacks.
ClientEditing Client editing is performed via callbacks.
All All actions are performed via callbacks.

See Also