The apex.util namespace contains general utility functions of Oracle Application Express.
Namespaces
Functions
(static) applyTemplate(pTemplate, pOptionsopt) → {string}
This function applies data to a template. It processes the template string given in
pTemplate
by substituting
values according to the options in pOptions
.
The template supports Application Express server style placeholder and item substitution syntax.
This function is intended to process Application Express style templates in the browser.
However it doesn't have access to all the data that the server has. When substituting page items and column
items it uses the current value stored in the browser not what is in session state on the server.
It does not support the old non-exact substitutions (with no trailing dot e.g. &ITEM). It does not support
the old column reference syntax that uses #COLUMN_NAME#. It cannot call
PREPARE_URL
(this must be done on the server).
Using a template to insert JavaScript into the DOM is not supported.
After processing the template all script tags are removed.
The format of a template string is any text intermixed with any number of replacement tokens. Two kinds of replacement tokens are supported: placeholders and substitutions. Placeholders are processed first.
Placeholder syntax is:
#<placeholder-name>#
The <placeholder-name> is an uppercase alpha numeric plus "_", and "$" string that must be a property
name in option object placeholders
that gets replaced with the property value.
Any placeholder tokens that don't match anything in the placeholders object are left as is (searching for the
next placeholder begins with the trailing # character).
Substitution syntax is (any of):
&<item-name>.
&<item-name>!<escape-filter>.
&"<quoted-item-name>".
&"<quoted-item-name>"!<escape-filter>.
&APP_TEXT$<message-key>.
&APP_TEXT$<message-key>!<escape-filter>.
&"APP_TEXT$<message-key>".
&"APP_TEXT$<message-key>"!<escape-filter>.
The <item-name> is an uppercase alpha numeric plus "_", "$", and "#" string. The <quoted-item-name> is a string of any characters except "&", carriage return, line feed, and double quote. In both cases the item name is the name of a page item (unless option includePageItems is false), a column item (if model and record options are given), a built-in substitution (unless option includeBuiltinSubstitutions is false), or an extra substitution if option extraSubstitutions is given.
The <message-key> is a message key suitable for use in apex.lang.getMessage and is replaced with the localized message text for the given key. The message must already be loaded on the client by setting the Text Message attribute Used in JavaScript to Yes or otherwise adding it such as with apex.lang.addMessages. If no replacement for a substitution can be found it is replaced with the message key. The language specifier that is supported for server side message substitutions is not supported by the client and will be ignored if present.
When substituting a column item the given record of the given model is used to find a matching column name. If not found and if the model has a parent model then the parent model's columns are checked. This continues as long as there is a parent model. The order to resolve an item name is: page item, column item, column item from ancestor models, built-in substitutions, and finally extra substitutions. Column items support the "_LABEL" suffix to access the defined column label. For example if there is a column item named NOTE the substitution &NOTE_LABEL. will return the label string for column NOTE.
The built-in substitution names are:
- &APP_ID.
- &APP_PAGE_ID.
- &APP_SESSION.
- &REQUEST.
- &DEBUG.
- &IMAGE_PREFIX.
The escape-filter controls how the replacement value is escaped or filtered. It can be one of the following values:
- HTML the value will have HTML characters escaped using apex.util.escapeHTML.
- ATTR the value will be escaped for an HTML attribute context (currently the same as HTML)
- RAW does not change the value at all.
- STRIPHTML the value will have HTML tags removed and HTML characters escaped.
This will override any default escape filter set with option defaultEscapeFilter
or from the column definition escape
property.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
pTemplate |
string | A template string with any number of replacement tokens as described above. | |||||||||||||||||||||||||||||||||
pOptions |
Object |
<optional> |
An options object with the following properties that specifies how the template
is to be processed:
Properties
|
Returns:
- Type
- string
Examples
This example inserts an image tag where the path to the image comes from the built-in IMAGE_PREFIX substitution and a page item called P1_PROFILE_IMAGE_FILE.
apex.jQuery( "#photo" ).html(
apex.util.applyTemplate(
"<img src='&IMAGE_PREFIX.people/&P1_PROFILE_IMAGE_FILE.'>" ) );
This example inserts a div with a message where the message text comes from a placeholder called MESSAGE.
var options = { placeholders: { MESSAGE: "All is well." } };
apex.jQuery( "#notification" ).html( apex.util.applyTemplate( "<div>#MESSAGE#</div>", options ) );
(static) arrayEqual(pArray1, pArray2) → {boolean}
Compare two arrays and return true if they have the same number of elements and each element of the arrays is strictly equal to each other. Returns false otherwise. This is a shallow comparison.
Parameters:
Name | Type | Description |
---|---|---|
pArray1 |
Array | The first array. |
pArray2 |
Array | The second array. |
Returns:
- Type
- boolean
Examples
This example returns true.
apex.util.arrayEqual( [1,"two",3], [1, "two", 3] );
This example returns false.
apex.util.arrayEqual( [1,"two",3], [1, "two", "3"] );
(static) cancelInvokeAfterPaint(pId)
Wrapper around cancelAnimationFrame that can fallback to clearTimeout
.
Cancels the callback using the id returned from apex.util.invokeAfterPaint.
Parameters:
Name | Type | Description |
---|---|---|
pId |
The id returned from apex.util.invokeAfterPaint. |
Example
See example for function apex.util.invokeAfterPaint
(static) debounce(pFunction, pDelay) → {function}
Returns a new function that calls pFunction
but not until
pDelay
milliseconds after the last time the returned function is called.
Parameters:
Name | Type | Description |
---|---|---|
pFunction |
function | The function to call. |
pDelay |
number | The time to wait before calling the function in milliseconds. |
Returns:
pFunction
.
- Type
- function
Example
This example calls the function formatValue in response to the user typing characters but only after the user pauses typing. In a case like this formatValue would also be called from the blur event on the same item.
function formatValue() {
var value = $v("P1_PHONE_NUMBER");
// code to format value as a phone number
$s("P1_PHONE_NUMBER_DISPLAY", value);
}
apex.jQuery( "#P1_PHONE_NUMBER" ).on( "keypress", apex.util.debounce( formatValue, 100 ) );
(static) escapeCSS(pValue) → {string}
Returns string pValue
with any CSS meta-characters escaped.
Use this function when the value is used in a CSS selector.
Whenever possible if a value is going to be used as a selector, constrain the value so
that it cannot contain CSS meta-characters making it unnecessary to use this function.
Parameters:
Name | Type | Description |
---|---|---|
pValue |
string | The string that may contain CSS meta-characters to be escaped. |
Returns:
- Type
- string
Example
This example escapes an element id that contains a (.) period character so that it finds the element with id = "my.id". Without using this function the selector would have a completely different meaning.
apex.jQuery( "#" + apex.util.escapeCSS( "my.id" ) );
(static) escapeHTML(pValue) → {string}
Returns string pValue
with any special HTML characters (&<>"'/)
escaped to prevent cross site scripting (XSS) attacks.
It provides the same functionality as sys.htf.escape_sc
in PL/SQL.
This function should always be used when inserting untrusted data into the DOM.
Parameters:
Name | Type | Description |
---|---|---|
pValue |
string | The string that may contain HTML characters to be escaped. |
Returns:
- Type
- string
Example
This example appends text to a DOM element where the text comes from a page item called P1_UNTRUSTED_NAME. Data entered by the user cannot be trusted to not contain malicious markup.
apex.jQuery( "#show_user" ).append( apex.util.escapeHTML( $v("P1_UNTRUSTED_NAME") ) );
(static) getDateFromISO8601String(pDateStr) → {Date}
APEX_JSON.STRINGIFY
and APEX_JSON.WRITE
procedures that take a DATE value into Date objects that the client can use.
Parameters:
Name | Type | Description |
---|---|---|
pDateStr |
string | String representation of a date in simplified ISO 8601 format |
Returns:
- Type
- Date
Example
This example returns a date object from the date string in result.dateString. For example "1987-01-23T13:05:09.040Z"
var date1 getDateFromISO8601String( result.dateString );
(static) getScrollbarSize()
Gets the system scrollbar size for cases in which the addition or subtraction of a scrollbar height or width would effect the layout of elements on the page. The page need not have a scrollbar on it at the time of this call.
Returns:
Example
The following example returns an object such as { width: 17, height: 17 }
. Note
the actual height and width depends on the Operating System and its various display settings.
var size = apex.util.getScrollbarSize();
(static) htmlBuilder() → {htmlBuilder}
Return an htmlBuilder interface.
Returns:
- Type
- htmlBuilder
(static) invokeAfterPaint(pFunction) → {*}
Wrapper around requestAnimationFrame that can fallback to setTimeout
.
Calls the given function before next browser paint. See also apex.util.cancelInvokeAfterPaint.
See HTML documentation for window.requestAnimationFrame
for details.
Parameters:
Name | Type | Description |
---|---|---|
pFunction |
function | function to call after paint |
Returns:
- Type
- *
Example
This example will call the function myAnimationFunction before the next browser repaint.
var id = apex.util.invokeAfterPaint( myAnimationFunction );
// ... if needed it can be canceled
apex.util.cancelInvokeAfterPaint( id );
(static) showSpinner(pContaineropt, pOptionsopt) → {jQuery}
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
pContainer |
string | jQuery | Element |
<optional> |
Optional jQuery selector, jQuery, or DOM element identifying the container within which you want to center the spinner. If not passed, the spinner will be centered on the whole page. The default is $("body"). | ||||||||||||||||
pOptions |
Object |
<optional> |
Optional object with the following properties:
Properties
|
Returns:
- Type
- jQuery
Examples
To show the spinner when processing starts.
var lSpinner$ = apex.util.showSpinner( $( "#container_id" ) );
To remove the spinner when processing ends.
lSpinner$.remove();
(static) stripHTML(pText) → {string}
Returns string pText
with all HTML tags removed.
Parameters:
Name | Type | Description |
---|---|---|
pText |
string | The string that may contain HTML markup that you want removed. |
Returns:
- Type
- string
Example
This example removes HTML tags from a text string.
apex.util.stripHTML( "Please <a href='www.example.com/ad'>click here</a>" );
// result: "Please click here"
(static) toArray(pValue, pSeparatoropt) → {Array}
Function that returns an array based on the value passed in pValue
.
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
pValue |
string | * | If this is a string, then the string will be split into an array using the
pSeparator parameter.
If it's not a string, then we try to convert the value with
apex.jQuery.makeArray to an array. |
||
pSeparator |
string |
<optional> |
":" | Separator used to split a string passed in pValue ,
defaults to colon if not specified. Only needed when pValue is a string.
It is ignored otherwise. |
Returns:
- Type
- Array
Examples
This example splits the string into an array with 3 items:
["Bags","Shoes","Shirts"]
.
lProducts = apex.util.toArray( "Bags:Shoes:Shirts" );
This example splits the string into an array just like in the previous example. The only difference is the separator character is ",".
lProducts = apex.util.toArray( "Bags,Shoes,Shirts", "," );
This example returns the jQuery object as an array.
lTextFields = apex.util.toArray( jQuery("input[type=text]") );