UserActionHandling enumeration defines possible types of user event handling.
Namespace:
DayPilot.Web.Ui.EnumsAssembly: DayPilot (in DayPilot.dll) Version: 5.8.1956.0 (5.8.1956.0)
Syntax
C# |
---|
public enum UserActionHandling |
Visual Basic (Declaration) |
---|
Public Enumeration UserActionHandling |
Visual C++ |
---|
public enum class UserActionHandling |
Members
Member name | Description | |
---|---|---|
JavaScript |
The user action will run a JavaScript function.
| |
PostBack |
The user action will call a PostBack event.
| |
CallBack |
The user action will call an AJAX CallBack event.
| |
Disabled |
This functionality is disabled at all.
|
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)