Book Image

Oracle ADF Faces Cookbook

By : Amr Ismail Gawish
Book Image

Oracle ADF Faces Cookbook

By: Amr Ismail Gawish

Overview of this book

Table of Contents (18 chapters)
Oracle ADF Faces Cookbook
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Presenting multiple records using ADF List View


In this recipe, we will get to know how to present multiple records at once using the ADF List View component, which is pretty similar to ADF Table with some minor differences.

If you don't care about sorting or filtering and you want to have more control of how the rows look, ADF List View is the component to use.

Tip

ADF List View is a newly introduced component starting from release 11.1.1.7 in the 11gR1 release stack and 12c.

You can continue from the previous recipe or you can grab this project's recipe by cloning the PresentingMultipleWithListView application from the Git repository.

How to do it...

To present multiple records using ADF List View, follow the ensuing steps:

  1. Create a task flow and a view page fragment like the previous recipe, but this time, change the following attributes:

    1. Task Flow name: multiple-employees-info-list.

    2. Create with Page Fragments: Checked.

    3. View name: employeesList.

    4. Page Fragment Directory: public_html\fragments.

    5. Page...