13
Views
3
Comments
Solved
[OutSystems Data Grid] How to Prevent Automatic Selection of Next Row (Cell) After Editing
outsystems-data-grid
Reactive icon
Forge asset by OutSystems
Application Type
Reactive

After editing a cell in the Data Grid and pressing Enter, the cell in the next row down is automatically selected.  How can I prevent this behavior and have the edited cell remain selected?

UserImage.jpg
Marc Fletcher
Solution

Hi @Kiet Phan,

That worked.  Very much appreciated!

2025-12-04 09-01-03
Kiet Phan
Champion
Solution

Hi @Marc Fletcher,

Let call this JS script, It will prevent next row selected when you press Enter.

  1. let myGrid = OutSystems.GridAPI.GridManager.GetGridById("MyGrid").provider;
  2. myGrid.keyActionEnter = wijmo.grid.KeyAction.None;
UserImage.jpg
Marc Fletcher
Solution

Hi @Kiet Phan,

That worked.  Very much appreciated!

2025-12-04 09-01-03
Kiet Phan
Champion
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.