Search code examples
oracle-databaseoracle-apex

wizard progress oracle apex


A demo page is prepared where the Wizard container is used within one page. So we move step by step on a single page.I dont know how to do this becouse it forces me for each step to move to next page so how to do all steps witouth moving to nwxtpage.

i tried to make a list and to asign each step on same page id butwhan i do it it automaticly goes to last step an i cant move .so i expect A demo page is prepared where the Wizard container is used within one page. So we move step by step on a single page.


Solution

  • A wizard is just a list region where every list entry is a step in the wizard. To make it work in a single page you could:

    • Create a page item Px_WIZARD_STEP in your page
    • Use the same page as target for each step in the wizard, but set Px_WIZARD_STEP to the value of the target step
    • Change "List Entry Current for Pages Type" list attribute to type "Expression" and set it to Px_WIZARD_STEP = #step number#
    • The next and previous buttons in the wizard should just point to the same page with a different value for the Px_WIZARD_STEP page item.