Posts

Showing posts with the label Oracle JET

Oracle JET with Firebase Realtime Database (Part 1)

Image
Oracle JET with Firebase Realtime Database (Part 1) With Firebase Realtime Database we can store and sync data in NoSQL database.  It is a cloud database and data store as JSON.  There are SDKs for iOS, Android and JavaScript.  you can find information about Firebase in this link: https://firebase.google.com/docs/database/ In this post, I want to explain how can we use firebase database as backend and Oracle JET as frontend. 1. Firstly we need to login in Firebase Cloud console.  https://firebase.google.com/ 2. After login to Firebase on the first page, there is "Add Project". I click on Add project". 3. display a popup for creating a project: Project name: JetApplication ProjectId: - Country/region: Germany 4. After creating the project, I am in Start page on Firebase Cloud. There are three icons for iOS, Android, Web. 5. I click on the "Add Firebase to your web app". Display popup with some informat...

Oracle JET module communication

Image
How can call method from another module 1. As see the picture I have a project. The Main page and two sub page as person and department. 2. In my mainPage.html define two buttons to call a function from another module. Change Person and Change Employee. Also, we have to set two module person and department. In my person.html and department.html, there is an input text. 3. Finally, you can see in this picture how this code works it. Git Project Link:  https://github.com/hamedoracle/JetCommunication.git