UserActionHandling enumeration defines possible types of user event handling.
Namespace: DayPilot.Web.Ui.EnumsAssembly: 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 name | Value | Description | |
---|---|---|---|
JavaScript | 0 | The user action will run a JavaScript function. | |
PostBack | 1 | The user action will call a PostBack event. | |
CallBack | 2 | The user action will call an AJAX CallBack event. | |
Disabled | 3 | This functionality is disabled at all. | |
Hold | 4 | Selection remains active but doesn't fire any action. | |
HoldForever | 5 | Selection remains active but doesn't fire any action. It stays active even after callback. |
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)