Book Image

Oracle APEX Cookbook : Second Edition

Book Image

Oracle APEX Cookbook : Second Edition

Overview of this book

Table of Contents (21 chapters)
Oracle APEX Cookbook Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Adding a navigation section to a page


Sections are the building blocks of websheet pages. Each page in a websheet will contain one or more sections. In the previous recipes, we've seen how creating a new page allows the websheet developer to create the first section.

In this recipe, we will see that there is another type of section and how it can be created.

Getting ready

As a starting point, we will use the staff members page that was created in the previous recipe.

How to do it...

  1. In the menu on the right side of the page, find the button called New Section and click on it. The familiar APEX wizard screen appears offering two options: Text and Navigation.

    Since we've seen the process of creating a Text section in the last two recipes already, we'll choose Navigation this time.

    A navigation section is a section that allows users to navigate between pages and sections.

  2. So select Navigate and click on Next.

  3. Select Page Navigation and click on Next.

  4. In the next page, set the title to Jump to Home.

  5. By...