Hi,
Apex 18.2.
I am trying to execute an action when user deletes an IG record through the "delete row" menu option of "APEX$ROW_ACTION" menu.
I read a thread on the forum before about the same requirement and @"John Snyders-Oracle" answered with that I have to listen to the model changes(if I remember correctly).
But I found another way and it's working but I want to be sure there is nothing harm could happen in the future.
I inspected the element of the "delete row" menu option and I found that it's id=PI_DTL_ig_row_actions_menu_5i.
PI_DTL is my region's name. So, I created a dynamic action on a jQuery Selector with #PI_DTL_ig_row_actions_menu_5i and made the event scope=dynamic without mentioning a jQuery selector container and it works fine. As I just said, I I want to be sure there is nothing wrong with such an implementation.