OUAF Release 4.3.0.4.0
API to access Oracle JET
Bug: A new API to access Oracle JET (OJET) in OUAF-based applications has been added as a part of a bug fix. The fix abstracts OJET libraries from direct use in edge products and CM code. The changes leverage existing OUAF mechanisms to simplify, consolidate, abstract, and optimize the usage of OJET in OUAF applications. These changes help minimize the impact of OJET changes and complexities in OUAF-based applications.
25507178 - OPTIMIZE OJET INCLUSION
Include the new UI map fragment F1-OJETLIBS in the HTML and invoke one of the methods (such as init()) of the new JavaScript class, ouaf.ui.OJETHelper.
HTML Example:
<oraInclude map="F1-OJETLIBS"/>
...
 
<script type=”text/javascript”>
ouaf.ui.OJETHelper.init(null, false, ['ojs/ojknockout', 'ojs/ojchart'], function ($, oj, ko) {
...
 
}
);
</script>
 
Also, to access JQuery, please use the $ symbol directly in the code. JQuery is loaded by OUAF in all applications and is available throughout the application as '$'. It is recommended that you use the JQuery instance provided by OUAF and not include any JQuery libraries explicitly.