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