In this section, we'll learn how to display images in our Oracle APEX application without relying on a page item. This method is perfect for situations where we need to show an image directly from a database table column, a file, or a URL without first loading it into a specific page item. We'll cover how to achieve this using a dynamic action and a PL/SQL procedure, making our application more efficient and flexible. By the end of this tutorial, we'll be able to display images dynamically, improving the user experience and reducing page load times. This technique is useful for reports, dashboards, and custom user interfaces where a static page item isn't the best solution. You can vind a visual solution from here. STEP 1: Create a blank page. STEP 2: Create a region and set it properties like- Name: Emp Type: ...
1. Download javascript library file from here- https://drive.google.com/file/d/19KyEFcDYSYJr06f6h2O4TQOHpDuJhwIY/view?usp=sharing or https://unpkg.com/pdf-lib@1.17.1/dist/pdf-lib.min.js 2. Open your apex application and click on the "Shared Components" icon. 3. Go to the "Files and Reports" section and click on the "Static Application Files" link. 4. Click on the "Create File" button. 5. Click on the "Drag and Drop Files" box. 6. Now select javascript library file which you download in step 1 and click "Create" button. 7. Now go the application back and create a blank page. 8. Create a region. 9. Add an item under this region. NAME: P14_UPLOAD_FILE Allows Multiple Files: Yes 10. Create 3 button (BTN_UPLOAD, BTN_CONVERT, BTN_DOWNLOAD) under this region. 11. Set buttons properties as your wish or follow video. 12. Create another region for display uploaded image. Set it's properties as like below- NAME : Displ...