You Asked
I have one page with tab template format. Each tab have two regions, one is interactive grid where I fetch existing record and second is form region which I used for new entry or updating existing record. In interactive grid there is one link column on which i clicked then that record goes to form region for update purpose. When I clicked on that link I want to redirect this information into that form region for updating and deletion but without reloading the parent page. How can i do this in oracle apex.
and Connor said...
If the IG is not an editable region:
- Javascript on a button in the IG that sets the value of a hidden ID item
- Dynamic Action on change of the hidden ID item, that executes some PL/SQL to load the record into the form
If the IG is an editable region, then it gets more complicated because the form and the IG need to remain in sync with changes to the values of each field. This would be all javascript and would involve using the IG data model to keep the fields in sync. Not easy and not fun.
(Thanks to Jeff Kemp for his help on this one)
Is this answer out of date? If it is, please let us know via a Comment