The eventDoubleClickHandling property (string) specifies how the event double click should be handled.
Possible Values
- "Disabled" - event double clicking is disabled
- "Enabled" - enabled but no default action (use onEventDoubleClick and/or onEventDoubleClicked)
- "PostBack" - invokes EventDoubleClick on the server side using a PostBack (ASP.NET WebForms only)
- "CallBack"- invokes EventDoubleClick on the server side using a CallBack (ASP.NET WebForms, ASP.NET MVC, Java)
- "JavaScript" - invokes EventDoubleClickJavaScript on the client side (ASP.NET WebForms, ASP.NET MVC)
- "Edit" - enters inline editing
- "Select" - selects the event
- "ContextMenu" - activates the event context menu
- "Bubble" - activates the bubble
Default Value
"Disabled"
Example
dp.eventDoubleClickHandling = "Enabled";