APEX

SLIDESHOW OF IMAGES IN APEX

Description: Websites that include many images, such as art or photo gallery sites, can benefit by presenting some (or all) of their images in slide show format. Slideshow of various Images on an Apex Page can be achieved using HTML, JavaScript, CSS, and jQuery.   Step 1: Uploading all the images in the Workspace   Shared ComponentsàFilesàImagesàCreateàSelect Application nameàChoose image fileàUpload.   Step 2: Source code   Give the following code in the Page Region source. Make sure that all the images are uploaded in the Workspace.   Source Code: <div id=”slideshow”>   //opening the Slider division…

Read More

Notification Message Bar design change in Oracle APEX 4.2 using CSS

Description: To change the “Notification Message Bar” design throughout the Oracle Application Express 4.2 application. Requirement:  The customer has asked us to change the default “Notification Message Bar,” because it…

Read More

Shrinking of Navigation Menu on page load

Requirement: Navigation menu should be shrinking on page load. Challenges faced:  In Oracle Apex 5, universal theme the navigation menu is strengthening on default page load. If we want to shrink the menu we need to click on the  navigation menu controller. Resolution: Created a dynamic action with event as page load and condition as JavaScript Expression and value as                      $(‘#t_Button_navControl’).attr(‘aria-expanded’) === “true”. A true action is provided with JavaScript code as $(‘#t_Button_navControl’).click(); Output:  

Read More

Search bar for Tabular form with auto complete option for Date values

Description:The search button in tabular form is helpful to identify the exact data in the tabular form, that will act like a filter in interactive report shows the particular values…

Read More

Retain checkbox value after refresh the page

     Step1: Declare global variable to get all the checkboxes   var i; checkboxes = document.querySelectorAll(‘input[type=checkbox]’);  Step2: Use the following function to save the checked checkboxes values into localstorage…

Read More

Report Carousel in APEX 5 UT

      Description: This document describes how to dynamically moves your data from the report in oracle apex 5.  When you add a region to your page with a couple…

Read More

Removal of close button from Select2 plugin

Description: The users who completed their tasks in selected Delivery PDVD must not be deleted from team allocation. Select2 plugin was used for selecting multiple users, which will have a…

Read More

Global Alert Box in APEX

Description: This is developed as we need customized alert boxes all-over application. A region created in the global page and been referred to in dialog box wherever been called. Step:1:…

Read More

Get Filtered Columns and Values in APEX Interactive Report

Description: In order to get the filtered columns and their corresponding values in APEX Interactive Report, we can use this code. So if the user selects multiple filters in IR…

Read More

Full View or Normal View of Tabular Form Columns in APEX

Description:A tabular form enables users to update multiple rows in a table at once from a single page. You can use the Tabular Form Wizard to create a tabular form…

Read More