Reputation: 408
I am using checkboxselectionmodel in ExtJS grid?
when i clicked on the row the row get selected and the respective checkbox also checked ..
But i need the checkbox to be checked only when i click the checkbox otherwise i want row only get selected ...
Please help me out...
Thanks & Regards,
Ramanavel Selvaraju
Upvotes: 0
Views: 2351
Reputation: 1537
In your CheckboxSelectionModel set checkOnly config option to true.
Upvotes: 2
Reputation: 12272
The CheckboxSelectionModel
links row selection and checkbox selection. You want row selection to be independent from the checkbox - so use RowSelectionModel
and add a Checkbox
into the first column of your grid.
Upvotes: 1