EventRightClickHandlingEnum enumeration defines possible types of user right mouse click handling.

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

Syntax

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

Members

Member nameValueDescription
JavaScript0 The user action will run a JavaScript function.
PostBack1 The user action will call a PostBack event.
CallBack2 The user action will call an AJAX CallBack event.
Disabled3 This functionality is disabled at all.
ContextMenu4 Context menu will appear.
Bubble5 A bubble will be activated.

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 showing the context menu (ContextMenu)it can be disabled at all (Disabled)

See Also