UserActionHandling enumeration defines possible types of user event handling.

Namespace: DayPilot.Web.Ui.Enums.Navigator
Assembly: DayPilot (in DayPilot.dll) Version: 8.1.3443.0 (8.1.3443.0)

Syntax

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

Members

Member nameValueDescription
JavaScript0 The user action will run a JavaScript function.
PostBack1 The user action will call a PostBack event.
None2 No action is fired.
Bind3 The update request is sent to the bound DayPilot control (BoundDayPilotID).

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