The apex.server
namespace stores all Ajax functions to communicate with the server part of Oracle Application Express.
Parent topic: JavaScript APIs
This API is used to asynchronously load other JavaScript libraries that has Asynchronous Module Definition (AMD), and if RequireJS
library is already loaded on the page.
Syntax
apex.server.loadScript( pConfig, callback )
Parameters
Table 38-56 apex.server.loadScript
Name | Type | Description |
---|---|---|
|
object |
JSON objects contains the following attributes:
|
|
object |
Function to be executed once script is loaded. |
Returns
Returns a function.
Examples
The following example loads a regular library that does not need RequireJS
:
apex.server.loadScript ({ "path": "./library_1.js" }, function() { console.log( 'library_1 is ready.' ); });
The following example loads a library that requires RequireJS
and creates own namespace: "myModule"
:
apex.server.loadScript ({ "path": "./library_2.js", "requirejs": true, "global": "myModule" }, function() { console.log( myModule ); });
The following example loads a concatenated libraries generated by RequireJS
Optimizer, assuming requireJS
is already on the page:
apex.server.loadScript ({ "path": "./library_all.js", "requirejs": true }, function() { console.log( myModule_1, myModule_2 ... ); });
Parent topic: apex.server namespace
This function calls the PL/SQL Ajax function that has been defined for a plug-in. This function is a wrapper of the jQuery.ajax
function that supports a subset of the jQuery.ajax
options plus additional Application Express specific options.
The plug-in PL/SQL Ajax function is identified using the value returned by the PL/SQL package apex_plugin.get_ajax_identifier
. There are two ways to provide the plug-in Ajax identifier:
Provide the pAjaxIdentifier
as the first argument
Provide information about the region(s) including the ajaxIdentifier
in the pData
object structure. See pData
description for details.
Syntax
apex.server.plugin( pAjaxIdentifier, pData, pOptions ) → Promise
Parameters
Table 38-57 apex.server.plugin
Name | Type | Description |
---|---|---|
|
String |
Optional. The plug-in ajax identifier. If not given then |
|
Object |
Optional object containing data to send to the server in the Ajax request. The Object is serialized as JSON and sent to the server in parameter Data for specific regions can be sent in the following format: { "regions": [ { "id": <region-id-or-static-id>, "ajaxIdentifier": <ajaxIdentifier>, <any other data specific to the region plug-in> }, ... ] } |
|
Object |
Optional object that is used to set additional options to control the Ajax call including before and after processing. See below See jQuery documentation of jQuery.ajax for these supported options: The dataType option defaults to json. The async option is deprecated and will be removed in a future release. |
Table 38-58 pData special properties
Name | Type | Description |
---|---|---|
|
String | jQuery | DOM element | Array |
Identifies the page or column items that will be included in the request. It can be a jQuery selector, jQuery or DOM object or array of item names. These items will be made available in session state on the server. If |
|
String |
These properties are moved out of the |
|
String | Array |
These properties are moved out of the |
Table 38-59 pOptions properties
Name | Type | Description |
---|---|---|
|
String | jQuery | DOM element |
jQuery selector, jQuery or DOM object which identifies the DOM element on which the |
|
Object | Array |
Only applies if |
|
Function |
JavaScript function used to clear the DOM after the |
|
String | jQuery | DOM object | Function |
Identifies the element(s) that will have a loading indicator (progress spinner) displayed next to it during the Ajax call. The element can be specified with a jQuery selector, jQuery or DOM object. function( pLoadingIndicator ) { return pLoadingIndicator.prependTo( apex.jQuery( "td.shuttleControl", gShuttle) ); } |
|
String |
Six options to define the position of the loading indicator displayed. Only considered if the value passed to
|
|
Object |
Object specifying the name of a queue and queue action. The name property specifies the name of the queue to add the request to. The action property can be one of the following:
The queue name is unique for each data unit. For example if you were saving the position of two different splitters use a unique name for each one so that latest update to one doesn't overwrite a previous lazy write of the other. When using It is possible to mix requests with wait and replace actions on the same queue. The |
|
String | DOM element |
Target element (DOM element or jQuery Selector) that this request pertains to. This is used to get session state context from the enclosing region. |
Returns
Returns a promise object. The promise done method is called if the Ajax request completes successfully. This is called in the same cases as the success callback function in pOptions
. The promise fail method is called if the Ajax request completes with an error including internally detected Application Express errors. This is called in the same cases as the error callback function in pOptions
. The promise also has an always method that is called after done and error. The promise is returned even when queue options are used. The promise is not a jqXHR
object but does have an abort method. The abort method does not work for requests that use any queue options.
Example
This example demonstrates a call to apex.server.plugin
sets the scalar value x01
to test
(which can be accessed from PL/SQL using apex_application.g_x01
) and sets the page item's P1_DEPTNO
and P1_EMPNO
values in session state (using jQuery selector syntax). The P1_MY_LIST
item is used as the element for which the apexbeforerefresh
and apexafterrefresh
events are fired. P1_MY_LIST
is used as the element for which to display the loading indicator next to. The success callback is stubbed out and is used for developers to add their own code that fires when the call successfully returns. The value for lAjaxIdentifier
must be set to the value returned by the server PL/SQL API apex_plugin.get_ajax_identifier
.
The pData
parameter to the success callback will contain any response returned by the plug-in PL/SQL Ajax function.
apex.server.plugin ( lAjaxIdentifier, { x01: "test", pageItems: "#P1_DEPTNO,#P1_EMPNO" }, { refreshObject: "#P1_MY_LIST", loadingIndicator: "#P1_MY_LIST", success: function( pData ) { // do something here } });
Parent topic: apex.server namespace
Returns the URL to issue a GET request to the PL/SQL Ajax function which has been defined for a plug-in.
Parameters
Table 38-60 apex.server.pluginUrl
Name | Type | Description |
---|---|---|
|
String |
Use the value returned by the PL/SQL package |
|
Object |
Optional object that is used to set additional values which are included into the URL. The special attribute |
Returns
Returns a string that is the URL to issue the GET
request.
Example
This call to apex.server.pluginUrl
returns a URL to issue a GET request to the PL/SQL Ajax function which has been defined for a plug-in, where the URL sets the scalar value x01
to test
(which can be accessed from PL/SQL using apex_application
.g_x01
) and will also set the page item's P1_DEPTNO
and P1_EMPNO
values in session state (using jQuery selector syntax). The value for lAjaxIdentifier
must be set to the value returned by the server PL/SQL API apex_plugin.get_ajax_identifier
.
var lUrl = apex.server.pluginUrl ( lAjaxIdentifier, { x01: "test", pageItems: "#P1_DEPTNO,#P1_EMPNO" } );
Parent topic: apex.server namespace
This function calls a PL/SQL on-demand (Ajax callback) process defined on page or application level. This function is a wrapper of the jQuery.ajax function that supports a subset of the jQuery.ajax
options plus additional Application Express specific options.
Syntax
apex.server.process( pName, pData, pOptions ) → Promise
Parameters
Table 38-61 apex.server.process
Name | Type | Description |
---|---|---|
|
String |
The name of the PL/SQL on-demand page or application process to call. |
|
Object |
Optional object containing data to send to the server in the Ajax request. The Object is serialized as JSON and sent to the server in parameter p_json. See below Data for specific regions can be sent in the following format: { "regions": [ { "id": <region-id-or-static-id>, "ajaxIdentifier": <ajaxIdentifier>, <any other data specific to the region plug-in> }, ... ] } |
|
Object |
Optional object that is used to set additional options to control the Ajax call including before and after processing. See See jQuery documentation of The async option is deprecated and will be removed in a future release. |
Table 38-62 pData special properties
Name | Type | Description |
---|---|---|
|
String | jQuery | DOM element | Array |
Identifies the page or column items that will be included in the request. It can be a jQuery selector, jQuery or DOM object or array of item names. These items will be made available in session state on the server. If |
|
String |
These properties are moved out of the |
|
String | Array |
These properties are moved out of the |
Table 38-63 pOptions properties
Name | Type | Description |
---|---|---|
|
String | jQuery | DOM element |
jQuery selector, jQuery or DOM object which identifies the DOM element on which the |
|
Object | Array |
Only applies if |
|
Function |
JavaScript function used to clear the DOM after the |
|
String | jQuery | DOM object | Function |
Identifies the element(s) that will have a loading indicator (progress spinner) displayed next to it during the Ajax call. The element can be specified with a jQuery selector, jQuery or DOM object. function( pLoadingIndicator ) { return pLoadingIndicator.prependTo( apex.jQuery( "td.shuttleControl", gShuttle) ); } |
|
String |
Six options to define the position of the loading indicator displayed. Only considered if the value passed to
|
|
Object |
Object specifying the name of a queue and queue action. The name property specifies the name of the queue to add the request to. The action property can be one of the following:
The queue name is unique for each data unit. For example if you were saving the position of two different splitters use a unique name for each one so that latest update to one doesn't overwrite a previous lazy write of the other. When using It is possible to mix requests with wait and replace actions on the same queue. The |
|
String | DOM element |
Target element (DOM element or jQuery Selector) that this request pertains to. This is used to get session state context from the enclosing region. |
Returns
A promise object is returned. The promise done method is called if the Ajax request completes successfully. This is called in the same cases as the success callback function in pOptions
. The promise fail method is called if the Ajax request completes with an error including internally detected Application Express errors. This is called in the same cases as the error callback function in pOptions
. The promise also has an always method that is called after done and error. The promise is returned even when queue options are used. The promise is not a jqXHR
object but does have an abort method. The abort method does not work for requests that use any queue options.
Example
This example demonstrates a call to apex.server.process
calls an on-demand process called MY_PROCESS
and sets the scalar value x01
to test
(which can be accessed from PL/SQL using apex_application.g_x01
) and sets the page item's P1_DEPTNO
and P1_EMPNO
values in session state (using jQuery selector syntax). The success callback is stubbed out so that developers can add their own code that fires when the call successfully returns.
Note: The pData
parameter to the success callback contains the response returned from on-demand process.
apex.server.process ( "MY_PROCESS", { x01: "test", pageItems: "#P1_DEPTNO,#P1_EMPNO" },{ success: function( pData ) { // do something here } } );
Parent topic: apex.server namespace
This function returns the URL to issue a GET request to the current page.
Parameters
Table 38-64 apex.server.url
Name | Type | Optional/Required | Description |
---|---|---|---|
|
Object |
Optional |
Object which can optionally be used to set additional values which are included into the URL. The special attribute |
|
String |
Optional |
Page ID of the current page, which can be optionally used to set the page ID in the URL being returned. |
Returns
Returns the string URL to issue the GET request.
Example
This example demonstrates a call to apex.server.url
. Returns a URL to issue a GET request to the DELETE function which has been defined for this page, where the URL sets the scalar value x01
to test
(which can be accessed from PL/SQL using apex_application
.g_x01
) and will also set the page item's P1_DEPTNO
and P1_EMPNO
values in session state (using jQuery selector syntax).
apex.server.url ({ p_request: "DELETE", x01: "test", pageItems: "#P1_DEPTNO,#P1_EMPNO" });
Parent topic: apex.server namespace