Hello all,
I'm trying to implement a functionality which relies on Kendo Grid (React + Typescript) with selectable rows (with checkbox) as in the second example in the docs:
https://www.telerik.com/kendo-react-ui/components/grid/selection/
Is there any way (based on that example) to make the rows conditionally disabled? Say I click one of the rows which does two things:
- sets some filtering state (not a problem),
- based on this state I make it impossible to select another row. They should become disabled, and greyed out (struggling to achieve this)
What I tried to do was removing pointerEvents by setting them to none, but this one unfortunately also removed the tooltip that should be attached to each row explaining why it's been disabled.
I also tried to override Grid's onRowClick event by:
onRowClick={()=>{}}
Any help much appreciated,
Krzysztof