The rowClickHandling property (string) specifies the default action for the row double click event (see also onRowDoubleClick and onRowDoubleClicked) in the JavaScript Gantt Chart.
"Disabled" - row click event will be disabled
"PostBack" - fires the RowDoubleClick event on the server side using a PostBack (ASP.NET WebForms only)
"CallBack" - fires the RowDoubleClick event on the server side using a CallBack (ASP.NET WebForms, ASP.NET MVC, Java)
"JavaScript" - fires the onRowDoubleClick event on the client side (ASP.NET WebForms, ASP.NET MVC only - api v1)
"Edit" - activates inline row header editing
"Select" - selects a row
"Disabled"Gantt Chart config:
{
rowDoubleClickHandling: "Edit",
// ...
}