If you have a backgound in Oracle Forms, you'll really like this post, because you are used to these functions: "key-up, key-down, current-record-visual-attribute", and so on........Especially the arrow keys to scroll a table ! It is possible to implement this in an ADF application. It takes some time to figure out, but it works, at least I'm very close now. Using some of the logic from one of my previous posts I managed to implement "easy scrolling". It take some javascript; 0: make the row current after click. "makeCurrent()". 1: find out the key pressed "checkKey()". 2: do the up or down action "nextRow()" and "previousRow()". 3: make sure you don't loose focus "holdCurrentField()". You'll have to add onclick="makeCurrent()" and onkeydown="checkKey()" to every column in you're table. This will c...
My findings regarding Oracle ADF, Oracle JET, Oracle Mobile and Oracle Cloud