Generating JSON using APEX_JSON

Generating JSON using APEX_JSON Sample tables from Oracle Create Two table based on below query and Inserted some record for demo purpose: Sample block to generated JSON manually OUTPUT: References:https://oracle-base.com/articles/misc/apex_json-package-generate-and-parse-json-documents-in-oracle Read more

APEX_JSON Nested parsing

APEX_JSON Nested JSON data parsing Sample JSON Sample PLSQL block OUTPUT: You might Also like: Read more

Accordion Report plugin | Oracle APEX

Accordian Report is a great interface when you want to utilize the screen space. I took the references from the Accrodian library and used to implement it in Oracle APEX. Steps { "showIcon": "fa-plus-square fa-2x", "hideIcon": "fa-minus-square fa-2x", "headingBackground": "red",... Read more

Social Footer Oracle APEX

The social footer is one of my plugins. I have created this plugin to avoid writing code over and over and static codes in HTML for showing social icons or social footer.  This plugin allows the developer to provide the... Read more

APEX shortcut variables

APEX shortcut variables are best in dynamic use in Javascript code. We can fetch data from database or can use any hard coded text. Use a shortcut to define frequently used code once and then reference it in many places... Read more

Smooth row view Interactive report Oracle APEX

In APEX interactive reports when we switch the report view from table view to row view, we use to see too much lag and screen loading. like below… It might impact user experience, sometimes report may have too much data... Read more

Disable Date Picker In Oracle APEX

We are going to disable the date picker, because some times we don’t need to allow for editing (due to some privilege ). Approach is using Jquery :Create a javaScript function : Since you run this function on page (Execute... Read more

Set item at right of interactive Report search bar Oracle APEX

How to Set item at right of APEX interactive Report search bar? We can set position of any item at right of interactive search bar by using simple JavaScript code. Steps : Output: DEMO Read more

Avoid printing interactive report column

Use following expression as column condition and column will not print. Read more

Working with Multi Select List

As we know select list is an item type available in Oracle apex in each of the version, for the single selection you don’t need to bother, it is just below We have a select list in page region Report... Read more