The rowDoubleClickHandling property (string) specifies the default row double click action.
Enabling the double click adds a delay to row click event handler (it's necessary for single/double click detection).
Possible Values
- "Disabled"
- "Enabled"
- "Select" - selects the row
- "Edit" - activates inline row editing
- "CallBack" - fires RowDoubleClick event on the server side using CallBack (ASP.NET WebForms, ASP.NET MVC, Java)
- "PostBack" - fires RowDoubleClick event on the server side using PostBack (ASP.NET WebForms)
Default Value
"Disabled"
Example
dp.rowDoubleClickHandling = "Enabled";