Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Custom save for interactive Grid

Good day!:
I am trying to add a custom save button and save process for an interactive grid I have in APEX 21.2. I am able to add the button via the JavaScript Initialization Code of the grid:
toolbarGroup.controls.push({
type: "BUTTON",
label: "Save",
action: "save",
icon: "icon-ig-save",
iconBeforeLabel: true,
hot: true
});
What I am missing is HOW to take the "save" action and add a dynamic action to be fired when it occurs and to fire my custom pl/sql procedure to do the actual grid save:
air_util.measures_grid_process
I already have this as a page submittal process but customer has asked for a separate button to click for saving the grid separately..
Thanks!
Tony Miller
White Rock, NM

This post has been answered by Hamza Al-abbasi on Mar 28 2022
Jump to Answer
Comments
Post Details
Added on Mar 28 2022
11 comments
9,965 views