I am using Kendo React Grids and trying to get it so that when you click into a cell it edits as shown in this example: https://www.telerik.com/kendo-react-ui/components/grid/editing/editing-in-cell/.
I couldn't get it to enter edit until I tried to back off everything in my code that's not in their example. What I determined is that it works as in the example when use use useState
, but as soon as I switch to using useReducer
it stops allowing edit. However, I really need reducers as I need it to sort, etc. as well and those use the sorting functions, etc. use them.
Are there any examples of using this type of editing with reducers and sorting?