Oracle Apex: Hide Processing Spinners Displayed by Dynamic Actions

In Oracle Apex, if you have created a dynamic action to set the value for multiple items, then at runtime, it will show the processing spinner on the right side.

If it is for two or three items, then ok, but for example, if you are setting the value for more than ten fields, then it will show the spinners all over the place, which not look good sometimes.

So if you want to hide the processing spinner displayed by dynamic actions, use the following CSS trick.

Click on the page and move on to the CSS inline section and add the following CSS:

.u-Processing {
   display:none !important;
}

Save the changes, and you are good to go.

Related Tutorials:

Vinish Kapoor
Vinish Kapoor

Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 20 years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.

One comment

Comments are closed.