This enumeration defines possible types of user event handling.

Namespace: DayPilot.Web.Ui.Events.Gantt
Assembly: DayPilot (in DayPilot.dll) Version: 8.1.3443.0 (8.1.3443.0)

Syntax

C#
public enum TaskRightClickHandlingType
Visual Basic
Public Enumeration TaskRightClickHandlingType
Visual C++
public enum class TaskRightClickHandlingType

Members

Member nameValueDescription
PostBack0 The user action will call a PostBack event.
CallBack1 The user action will call an AJAX CallBack event.
Enabled2 The user action is enabled but no default action is specified. Only the client-side event handlers will be fired.
Disabled3 This functionality is disabled.
ContextMenu4

Remarks

The user action can be handled in several ways: on the server-side using a PostBack request (PostBack)on the server-side using an AJAX callback request (CallBack)it can be enabled with no server-side action (Enabled)it can be disabled (Disabled)

See Also