APEX4 Password Strength Meter Item Plugin

Written by Paulo Vale on Friday, July 16, 2010

I was doing some tests with the new plugin functionality coming with APEX4 and the result is this plugin I'm sharing with you today.


I based the plugin on the "Ajax Password Strength Meter Script" that you can find following this link: http://simplythebest.net/scripts/ajax/ajax_password_strength.html

It's a small plugin using jQuery that provides an easy interactive way to show the strength of a user's password.


Download Oracle Application Express 3.2

Written by Paulo Vale on Saturday, February 28, 2009

The new APEX release 3.2 is finally available for download. This new version covers essentially the Oracle Forms to APEX converter, but also has some extras regarding security.


Download Oracle Application Express 3.2

Oracle Application Express 3.2 Release Notes

Application Express Documentation and Tutorials

Oracle Forms convertion to Apex is here... almost!

Written by Paulo Vale on Thursday, February 12, 2009


Finnaly fresh news... the apex.oracle.com demo server was upgraded to Application Express 3.2.0.00.21. You can't download it yet, but you can test it online. Very soon we'll have a production release available.

You can read all about Oracle Application Express Release 3.2 new features details here.

Additional info on Joel Kallman's post about the new release.

jQuery: 3rd Birthday and new release 1.3

Written by Paulo Vale on Thursday, January 15, 2009


jQuery is the way of the future in what concerns JavaScript framework integration with Oracle Apex. In the last months, several Oracle Apex Bloggers have posted nice examples to take Apex applications interfaces to another level taking advantage of jQuery functionalities.

Today, on the project’s 3rd birthday, the jQuery development team has announced the release of jQuery v1.3, the latest and greatest release of jQuery which includes a lot changes and new features like:

  • Sizzle Selector Engine
  • Live Events
  • jQuery Event Object Overhaul
  • HTML Injection Rewrite
  • Offset Rewrite
  • No More Browser Sniffing

Aditional details on jQuery 1.3 new features can be found via the release notes document.

Build an image gallery using APEX

Written by Paulo Vale on Friday, December 19, 2008


This time, I'll show how to build a simple image gallery using Oracle Application Express (APEX) and taking advantage of Jquery framework capabilities. But first of all, follow the link to see the magic happening ;)

There are several slideshow or gallery plugins for Jquery. You can choose the one you like more and re-adapt the code to fit the plugin requirements. My choice was Pikachoose.

Pikachoose is a lightweight Jquery plugin that allows easy presentation of photos with options for slideshows, navigation buttons, and auto play.



Lets begin creating a simple database structure to store the images.

Create a sequence to be used by image id:



Create a table to store the images:



Now on APEX, following the wizard, create a data entry form based on "GAL_IMAGES" table.


Go to Shared Components>Application Items and Create an Application Item. Ex: G_IMAGE_ID.

Create an Application Process to retrieve the image from the database. Identify the point at which this process will run as "On Demand". The point of "On Demand" is that it will only fire when requested by a page process.



Now create the page where you want to put the image gallery and then, Edit Page > HTML Header:




On the same page, create a PL/SQL Dynamic Content region:



And run...