UserActionHandling 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 TaskClickHandlingType
Visual Basic
Public Enumeration TaskClickHandlingType
Visual C++
public enum class TaskClickHandlingType

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
Bubble5

Remarks

The user action can be handled in several ways: on the client-side by custom JavaScript code(JavaScript)on the server-side using a PostBack request (PostBack)on the server-side using an AJAX callback request (CallBack)it can be disabled at all (Disabled)

See Also