36.7 ADD_JET Procedure
This procedure adds the script tag to load the Oracle JET library.
Syntax
APEX_JAVASCRIPT.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;
Parent topic: APEX_JAVASCRIPT