Book Image

Oracle JET for Developers

By : Raja Malleswara Rao Malleswara Rao Pattamsetti
Book Image

Oracle JET for Developers

By: Raja Malleswara Rao Malleswara Rao Pattamsetti

Overview of this book

This book will give you a complete practical understanding of the Oracle JavaScript Extension Toolkit (JET) and how you can use it to develop efficient client-side applications with ease. It will tell you how to get your own customized Oracle JET set up. You'll start with individual libraries, such as jQuery, Cordova, and Require.js. You'll also get to work with the JavaScript libraries created by Oracle, especially for cloud developers. You'll use these tools to create a working backend application with these libraries. Using the latest Oracle Alta UI, you'll develop a state-of-the-art backend for your cloud applications. You'll learn how to develop and integrate the different cloud services required for your application and use other third-party libraries to get more features from your cloud applications. Toward the end of the book, you'll learn how to manage and secure your cloud applications, and test them to ensure seamless deployment.
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Application theming


Oracle JET as a framework uses Oracle Alta UI for its application user experience design. While we can choose the default theme provided by the framework, we can also customize the application theme as per the business context. The level of customization the framework allows is to include or exclude the style components in the application.

  1. The Alta UI theme offers the following style components for the application:oj-alta.css, oj-alta-min.css, oj-alta-notag.css, and oj-alta-notag-min.css.
  2. It is recommended you use HTML5 page standards with the DOCTYPE as follows: <!DOCTYPE html>.

  3. Oracle JET also contains a set of SCSS tools that easily read the style contents and apply them to the application.

Customized application theming

There are different ways to customize the application theme in Oracle JET. Let us review the Oracle JET Marker styles before explaining the customizing scenarios.

The following are the set of Marker styles offered by the Oracle JET framework, which...