Hi,
At page load we set the interactive grid in edit mode:
apex.region("bestellijst").widget().interactiveGrid("getActions").set("edit", true);
After inserting a value in a column of our interactive grid, a dynamic action is fired:
- setting values for the next 3 columns
- disabling these 3 columns
We want the input focus automatically on the next column.
We added a third action:
- set focus, with affected elements set to Column(s) and the desired column
The focus is set to this column but this is not visible. Only by clicking the column its clear for the user where the focus is
We changed the third action into:
- Execute Javascript Code, apex.item("cExAantal").setFocus();
(Static Id of column was set to cExAantal)
Also, the same (no) effect.
How can we simulate an mouse click action on the column?
Thank you,
Jos