Validations and Duplicate Page Submissions in APEX 5.1

Paul Jones Oct 9, 2017 10:00:47 AM

I had a problem with a modal dialog page in APEX 5.1, which created new rows in a table on the database whenever the Create button was pressed. The problem was that if the user was very quick i.e. double/triple clicking on the Create button, then it was possible to create duplicate rows on the database with exactly the same data.

In APEX 5.1, you have a few options available in the page attributes that concern how to handle a page submission. Namely:

  • Enable Duplicate Page submissions
  • Yes – Enable page to be re-posted
  • No – Prevent page from being re-posted
  • Reload on Submit (New Feature for 5.1)
  • Always
  • Only For Success

 

My page was set to the default options for these attributes in a new APEX 5.1 modal dialog page; Enable Duplicate Page submissions was set to ‘Yes’ and Reload on Submit was set to ‘Only for Success’.

Excellent I thought, all I need to do here is change Enable Duplicate Page submissions to ‘No – Prevent page from being re-posted’ and my problem would be solved!

However, I hit a problem. Because all of the validations on the page were custom server side validations which occur after the submit; if any of them failed then it would no longer be possible for the user to submit the page at all, even if they corrected all validation errors, and they would be presented with:

Validations and Duplicate Page Submissions in APEX 5.1

Had all the page validations been client side (i.e. the ones that appear on the item attributes like ‘Value Required’ or ‘Subtype’) then this wouldn’t have been a problem as all of these validations occur client side before the ‘submit’. Please see my colleague Matt Mulvaney’s blog here for a full description of Client Side Validations.

However, as the page has a number of dynamically displayed items and other required custom validations to do with the dataset I require some more advanced server side validations written in PL/SQL on my page.

Let us look at the new option for APEX 5.1; Reload on Submit. What this does when set to ‘Only on Success’ is handle the server side validations in a much nicer way so that the page doesn’t completely reload on submit when validation errors occur and instead the validations look like they behave how they do with client side validations and the errors are displayed without the page re-loading.

This is much nicer than in 5.0.x versions of APEX and greatly improves the user experience and performance of a page so I really want to keep this behaviour!

So the next thing I did, to try and stop the duplicate page submissions, was set Enable Duplicate Page submissions back to ‘Yes’ and applied a different fix Explorer commonly use to stop duplicate page submissions. On the button used to submit the page, we add a dynamic action, which fires on the click of the button, which has a JavaScript action of disabling the button (to stop the user pressing it again) and then submitting the page:

Validations and Duplicate Page Submissions in APEX 5.1

Validations and Duplicate Page Submissions in APEX 5.1

(Don’t forget to give your button a static ID. I called mine CREATE_BUTTON).

Great, let’s give that a try (and deliberatley cause some of my server side validations to fire):

Validations and Duplicate Page Submissions in APEX 5.1Darn! the button is disabled but I need to press it again after correcting my validation errors, what’s caused this? Well, it’s that option I just talked about: ‘Reload on Submit’. Because this is set to ‘Only for success’ the page hasn’t reloaded after validation errors and my button is still disabled.

So in order to use my fix to stop the button from being pressed twice I need to set this back to ‘Always’ and lose the niceness of the way server side validations are handled in APEX 5.1.

So, for the moment* if you have page where you want to detect or handle duplicate page submissions you have the following options:

  1. Set Enable Duplicate Page submissions to No but you will have to keep all your page validations Client Side using either the item attributes or some client side javascript as can be seen in the blog of Matt’s I linked to earlier
  2. Set Enable Duplicate Page submissions to Yes and use the fix above to disable the button when the button is pressed but you will then HAVE to have the Reload on Submit option set to Yes in order for the button to be re-enabled if any validation errors occur.
  3. Add something at database level (unique index on the non-null columns or a trigger) which detects the duplicates and removes them (not ideal!)
  4. Have a JS timer on the page which looks for any of the validation text and re-enables the button or hook in to apex.message.showErrors in order to re-enable the button when errors on the page have occurred.

*Oracle have acknowledged that this behvaiour is a bug, see here. So hopefully in APEX 5.2 we will be able to have the best of both worlds!

 


 

Author: Paul Jones

Job Title: Oracle APEX Development Consultant

Bio: Paul is a Development Consultant at DSP-Explorer. Paul has a BSc in Computing from the University of Leeds and is now building on considerable experience in development and support using Oracle PL/SQL and Oracle E-Business Suite (EBS). Paul is employing APEX to provide quality, bespoke software solutions both internally and to a range of organisations.