EventClickHandlingEnum enumeration defines possible types of user click handling.
Namespace: DayPilot.Web.Ui.EnumsAssembly: DayPilot (in DayPilot.dll) Version: 8.1.3443.0 (8.1.3443.0)
Syntax
| C# |
|---|
public enum EventClickHandlingEnum |
| Visual Basic |
|---|
Public Enumeration EventClickHandlingEnum |
| Visual C++ |
|---|
public enum class EventClickHandlingEnum |
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. | |
| Edit | 4 | Edit mode for the event will be entered. | |
| Select | 5 | The clicked event will be selected. | |
| Bubble | 6 | A bubble will be activated for the clicked event. | |
| ContextMenu | 7 | Context menu will appear. |
Remarks
The user action can be handled in several ways:
on the server-side using a PostBack request (PostBack)on the server-side using an AJAX callback request (CallBack)on the client-side by custom JavaScript code(JavaScript)on the client-side by entering edit mode for the event (Edit)it can be disabled at all (Disabled)