While developing a web site it is common to have multiple pages and navigate between from one page to another on some event. This is called navigation between...
While developing a web site it is common to have multiple pages and navigate between from one page to another on some event. This is called navigation between pages. In VBCS application each pages are part of at-least one flow. A flow named main and a page named main-start is created by default when we create an application. The main flow and its nested flows can each contain multiple pages. Let’s move ahead and see how to create navigation between pages. Create VBCS web...
While developing a web site it is common to have multiple pages and navigate between from one page to another on some event. This is called navigation between pages. In VBCS application each pages...
Oracle Visual Builder is a cloud based software development Platform as a Service (PaaS) and a hosted environment for our application development...
Oracle Visual Builder is a cloud based software development Platform as a Service (PaaS) and a hosted environment for our application development infrastructure. Oracle Visual Builder is a visual and declarative cloud environment for developing and hosting engaging mobile and web applications. Oracle VBCS allows to access data from any REST, SOAP based API and allows to create custom reusable business object to store and manage data. Without the need of any software, VBCS...
Oracle Visual Builder is a cloud based software development Platform as a Service (PaaS) and a hosted environment for our application development infrastructure. Oracle Visual Builder is a visual and...
Oracle Developer Cloud offers some powerful features to automate your build and deployment process to support CI/CD (continuous integration/ continuous...
Oracle Developer Cloud offers some powerful features to automate your build and deployment process to support CI/CD (continuous integration/ continuous delivery) The nice part is that you don't have to use the Oracle docker registry or git repository (although you can of course), you can use Github repositories and Docker hub. This post describes how I built and pushed my docker image with a node.js backend to docker hub, fetching the code from Github. Prequisites You need...
Oracle Developer Cloud offers some powerful features to automate your build and deployment process to support CI/CD (continuous integration/ continuous delivery) The nice part is that you don't have...
Join Capgemini and Oracle for a Virtual Oracle Developer Meetup. Hacking the Oracle Cloud (with Oracle JET) for Education. Presented by Filip Huysmans (db...
Join Capgemini and Oracle for a Virtual Oracle Developer Meetup. Hacking the Oracle Cloud (with Oracle JET) for Education. Presented by Filip Huysmans (db contribute) and Christian McCabe (Steltix) Lessons and insights into putting together a Hackathon for an education community. With an opportunity for Q&A Schedule: Monday, June 15, 2020 6:00 PM to 7:00 PM GMT+1 For details please visit the registration page here. Oracle Developer Meetups in Europe: Find a local Meetup...
Join Capgemini and Oracle for a Virtual Oracle Developer Meetup. Hacking the Oracle Cloud (with Oracle JET) for Education. Presented by Filip Huysmans (db contribute) and Christian McCabe...
Want to become an expert in Microservices Architecture, Serverless Functions, Kubernetes, developing in Node, Python and chatbots? Join our virtual Oracle...
Want to become an expert in Microservices Architecture, Serverless Functions, Kubernetes, developing in Node, Python and chatbots? Join our virtual Oracle Developer Community events in June & July 2020! Virtual Oracle Developer Meetups Want to learn more about developing Enterprise-grade Cloud Native applications on the Oracle Cloud Platform, covering topics like Microservices Architecture, Serverless Functions, Kubernetes, developing in Node, Python and PHP, using Low Code...
Want to become an expert in Microservices Architecture, Serverless Functions, Kubernetes, developing in Node, Python and chatbots? Join our virtual Oracle Developer Community events in June & July...
We are pleased to announce an exciting new Oracle Forms 12c (12.2.1.3) VM image offering in Oracle Cloud Marketplace for Oracle Cloud Infrastructure (OCI). This...
We are pleased to announce an exciting new Oracle Forms 12c (12.2.1.3) VM image offering in Oracle Cloud Marketplace for Oracle Cloud Infrastructure (OCI). This Oracle Forms image is built on Oracle Linux 7 and is a ready-to-run image that allows you to rapidly provision an Oracle Forms environment in OCI. By deploying the Oracle Forms image in OCI, you can dramatically reduce the time and cost to develop, test, and deploy Oracle Forms applications. In just minutes you can...
We are pleased to announce an exciting new Oracle Forms 12c (12.2.1.3) VM image offering in Oracle Cloud Marketplace for Oracle Cloud Infrastructure (OCI). This Oracle Forms image is built on Oracle...
An interesting question came up in the JDeveloper & ADF ODC space. A user asked how to display a button which shows a long text in multiple lines. The image...
An interesting question came up in the JDeveloper & ADF ODC space. A user asked how to display a button which shows a long text in multiple lines. The image above shows an af:button with a longer text. If you don’t have enough space in your layout to show such a long text in a button, you can shorten the Text. If this is not a acceptable, one solution is to break the long text into multiple lines. Think about an af:panelSplitter which should show the same button. but the...
An interesting question came up in the JDeveloper & ADF ODC space. A user asked how to display a button which shows a long text in multiple lines. The image above shows an af:button with a...
I will explain how to reference JavaScript module function in Oracle JET HTML. In previous Oracle JET versions, we were using $root to access parent...
I will explain how to reference JavaScript module function in Oracle JET HTML. In previous Oracle JET versions, we were using $root to access parent appController module. Syntax $root looks a bit like magic, it is better to reference module through a predefined variable. I will show you how. Sample app comes with number converter, which helps to format numeric value. For convenience reasons and better reuse, number formatting function is moved to a separate module. Our goal...
I will explain how to reference JavaScript module function in Oracle JET HTML. In previous Oracle JET versions, we were using $root to access parent appController module. Syntax $root looks a bit like...
This is a quick tip on Oracle JET Router configurations. There are a couple of ways through which we can pass parameters while navigating using ojet Router. 1)...
This is a quick tip on Oracle JET Router configurations. There are a couple of ways through which we can pass parameters while navigating using ojet Router. 1) You can set some global parameters while setting up the router configuration. This parameter is available on the static Router.rootInstance object. This value can be accessed via the Router's rootInstance's current-state. Using this value I can set the default tab whenever I enter a module. 2) The second option is to...
This is a quick tip on Oracle JET Router configurations. There are a couple of ways through which we can pass parameters while navigating using ojet Router. 1) You can set some global parameters while...