Posted 25 July 2024, 8:20 pm EST
We have a flexgrid in an Angular 15+ project that almost exclusively uses custom edit controls, and has these properties set:
[keyActionTab]="KeyAction.CycleEditable" [keyActionEnter]="KeyAction.MoveDown"
The tab behaviour works as we’d like but enter key behaviour is ignored.
I assume I have to raise an event from the custom control and then call a method / event on the flexgrid to ask to move down a row?
Is there a modern example of this?