16.8.2.5 Preparing and Saving Images with Titles
Preview the multi-file upload flow that stages images in a collection before saving them.
The Add Break Room Photos page uses application logic in a
EBA_DEMO_WOODSHR_FILE package to:
- Clear the collection to start the process
- Prepare the collection with unique upload file names after the user uploads the images
- Preview the temporary images in a grid where the user can add the corresponding titles, and
- Save the images and titles to the break room photos table.
- Organizing Application Logic in a Package
Encapsulate business logic in a PL/SQL package so you can maintain it and change its implementation without affecting callers. - Clearing Collection to Start the Process
Use a conditional execution chain to clear staged uploads only when starting a new multi-photo flow. - Preparing Collection to Enter Photo Titles
Prepare a collection with uploaded file names so users can add titles before posting photos. - Previewing Images in a Grid to Enter Titles
Preview staged uploads in a grid and collect required values before saving them.
Parent topic: Posting Multiple Break Room Photos