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

What is Knockout.js?


Knockout.js is a JavaScript library that provides a cleaner way to manage the changes across the View, ViewModel, and Model to seamlessly reflect the changes between the layers with the help of two-way data bindings. This way, the developers don't have to worry about the handling of data updates between the JavaScript objects and the HTML view objects; instead, a data binding is established between the JavaScript objects and the view renderers, so that the updates are communicated by the framework, leaving us to concentrate on the data model and business logic behind the application.

The purpose of the Knockout.js library is to help design scalable, data-driven interfaces, but it does not attempt to be an alternative to standard frameworks such as jQuery or prototype.

In this chapter, let's review the features and components of Knockout.js that help Oracle JET handle the JavaScript MVVM architecture efficiently.

The View, View Model and Model responsibilities are represented...