Oracle JET components
As a framework, Oracle JET offers several components with patterns and utility functions. To associate the state to these components, they wrap over the jQuery UI widgets including methods and events. This lets the components benefit from the two-way binding feature from Knockout.js, as discussed in the previous chapter. However, the Oracle JET components adopt only limited and required sets of jQuery UI modules.
Oracle JET components are developed by extending the simple HTML components. Out of the following listed Oracle JET components, some of the simple components, such as ojInputText
and ojTable
, extend a single HTML component such as input and table, while a few other components are developed by extending more than one HTML component, such as ojButton
, which extends multiple HTML components: input
, div
, and button
.
Oracle JET components share a common functionality by providing support for methods such as getNodebySubId()
, getSubIdByNode()
, getContextByNode()
, and...