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

Members

Member nameValueDescription
PostBack0 The user action will call a PostBack event.
CallBack1 The user action will call an AJAX CallBack event.
Notify2 The task will be deleted on the client side and the server-side event hanlder will be fired.
Enabled3 The user action is enabled but no default action is specified. Only the client-side event handlers will be fired.
Disabled4 This functionality is disabled.

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