Arrow keys don’t move caret inside inline editable cell in Data Grid 2 (Mendix 10.23)
0
Hi everyone 👋, I’ve run into an issue with Data Grid 2 inline editing in Mendix 10.23, and I wanted to confirm if anyone else has faced the same thing. What’s happening When a column is set to be editable (Text Box) and I start typing, the arrow keys (← / →) don’t move the cursor between characters.Instead, the focus jumps to the next column or row — as if I’m navigating the grid itself. So it’s impossible to move the text caret inside the inline text box using arrow keys. What I tried Added a JavaScript action to intercept the keydown event and call stopPropagation() / preventDefault(). Tried attaching the listener on the textbox element and at document level with capture phase enabled. The listener triggers, but the Data Grid 2 still consumes the arrow key events first. It looks like the React layer for Data Grid 2 captures these keys before the DOM-level event can be stopped. Is this a known limitation or bug?Is there a recommended approach or upcoming fix to allow normal caret movement with arrow keys inside inline editable cells?