Skip to Main Content

Title region

Breadcrumbs

Image Upload Parameters

The action uses a defined JavaScript function to evaluate RESTful service handler query parameters before uploading an image. Returned query parameters are used in the upload RESTful handler to save images in the database table (query parameters are available via PL/SQL bind variables).

Preview components

Click on the page component below to preview its configuration in the Oracle APEX page designer.

Initialization JavaScript Code

Alternatively, the browse parameters can be set (once on page load) using the plug-in JavaScript Initialization Code.
function( pOptions ) {
  pOptions.imageUploadParams = $.extend( pOptions.imageUploadParams, {
    "paramName": "paramValue"
  } );
  return pOptions;
}

Documentation

Read the documentation to learn more about the supporting dynamic action plug-in features.

Learn more

Browsing images using custom query parameters is described in Browse Image Parameters.

Global Page

The supporting dynamic action plug-in can be used on Oracle APEX global page to customize the plug-in across the application.

Live demo

Folder

Plug-in