Javascript – Oracle Apex – Is it possible to send a value from a page item from the client side to the server side without a submit?
I added a JavaScript function to capture the ROWID of the rows that are selected in the GRID and passed it to a page item. var gridView = apex.region("emp").call("getCurrentView"), selectedRecords = gridView.getSelectedRecords(), idValues = ""; for (var i = 0;…