user3631498
user3631498

Reputation:

Kendo grid selection entire row

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

Answers (2)

Poly
Poly

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

Nalin Aggarwal
Nalin Aggarwal

Reputation: 888

Use selectable: "row" instead to make whole row selectable. Check the demo

Upvotes: 1

Related Questions