28.7 ADD_JET Procedure

This procedure adds the script tag to load the Oracle JET library.

Syntax

PACKAGE.PROCEDURE/FUNCTION (
  procedure add_jet );

Example

The following example demonstrates how to only load the Oracle JET library if the widget isn't rendered as a native browser input field.

if l_display_as <> 'NATIVE' then
    apex_javascript.add_jet;
end if;