Reputation:
I want kendoGrid to select the entire row.
I have to have this set:
scrollable: { virtual: true }
and without paging data
Sample: Kendo UI Dojo
Just click on Brazil to select the row but it just selects the cell.
Upvotes: 0
Views: 754
Reputation: 427
According to Kendo's documentation:
http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#configuration-selectable
set selectable: "row"
in your grid settings
Upvotes: 1
Reputation: 888
Use selectable: "row"
instead to make whole row selectable.
Check the demo
Upvotes: 1