The rowClickHandling property (string) specifies the default action for the row click event (see also onRowClick and onRowClicked) in the JavaScript Gantt Chart.
"Disabled"
- row click event will be disabled
"PostBack"
- fires RowClick event on the server side using a PostBack (ASP.NET WebForms only)
"CallBack"
- fires RowClick event on the server side using a CallBack (ASP.NET WebForms, ASP.NET MVC, Java)
"JavaScript"
- fires onRowClick 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:
{
rowClickHandling: "Edit",
// ...
}