Hello, I have a page using an interactive grid. I hid the standard "Save" button and added a custom Save button in order to perform some additional actions upon save. The Save button performs the follow DAs:
1. Invoke Save process via JS
apex.region("adj").widget().interactiveGrid("getActions").invoke("save");
2. Execute PL/SQL code, which populates a status page item
3. Display notification showing status page item value from #2 (using the Pretius Enhanced Notification plugin)
Step 1 triggers the IG - Automatic Row Processing process where i have the "Success Message" null.
Everything works fine, but my issue is that the IG - Automatic Row Processing step produces a floating notification stating "Changes Saved" and it never goes away until the X is clicked. Is there a way to prevent this success message from appearing? Or at the very least, to have it disappear after second. The custom notification i return in step 3 is all that i need to appear, not success that the IG saved the data.
Thanks,
Ryan