Title: How to Restrict Checkbox Selection to Only Checkbox Click in Kendo Grid Row Selection?
Description:
I am using the Kendo React Data Grid with row selection enabled via a checkbox column. My goal is to select a row only when the checkbox itself is clicked, not when any other part of the row is clicked.
However, currently, when I click anywhere in the row (e.g., the staff name), the checkbox also gets selected. This creates a problem in my use case — clicking the staff name navigates to the staff profile, but it also toggles the checkbox, which is unintended.
What I need:
I want the checkbox to be selected only when the checkbox is clicked, and not when clicking anywhere else in the row.
What I've tried:
I am using
selectable={{enabled: true,mode: 'multiple',drag: false,cell: false,checkboxOnly: true}}but the issue still occurs.
I have a custom cell rendering for the name column that navigates on click.
Screenshot:
Question:
How can I configure the Kendo Grid so that:
Checkbox selection is triggered only by clicking the checkbox.
Clicking on any other cell (especially with navigation) does not toggle checkbox selection?
Thanks in advance!