End-users are strange. Sometime they need the system we are developing to remind them when they do silly things. For example some users want us to remind them...
End-users are strange. Sometime they need the system we are developing to remind them when they do silly things. For example some users want us to remind them if they are trying to navigate away from a page where they did changes to data, but didn't click "save". Below I'll show you an approach for implementing such a behavior in Oracle Visual Builder Cloud Service. What we are going to do is cancel navigation actions until users acknowledge that they are ok to leave the...
End-users are strange. Sometime they need the system we are developing to remind them when they do silly things. For example some users want us to remind them if they are trying to navigate away from...
Introduction In this article in the Web Components Techniques series I'm going to look at a fairly specialised topic, that of creating components that can call...
Introduction In this article in the Web Components Techniques series I'm going to look at a fairly specialised topic, that of creating components that can call into VBCS Service Endpoints (REST Services managed by Oracle Visual Builder Cloud Service). Now as a matter of course we try and build components which are totally agnostic of where they will be used, I should be able to use that component both within JET or any JET based UI, including VBCS of course. As such we might...
Introduction In this article in the Web Components Techniques series I'm going to look at a fairly specialised topic, that of creating components that can call into VBCS Service Endpoints...
Oracle Visual Builder 18.4.5 comes with very neat and polished UI. Also it brings Oracle JET 6 support (latest JET version to date). Read more about it - New...
Oracle Visual Builder 18.4.5 comes with very neat and polished UI. Also it brings Oracle JET 6 support (latest JET version to date). Read more about it - New Features in Oracle Visual Builder December Release. I have upgraded our VBCS instance to 18.4.5: I was curious how automatic upgrade would work for VBCS app implemented in the previous version (download source code for the upgraded app from my GitHub repo). Especially that now VBCS is using newer JET too. I must say I...
Oracle Visual Builder 18.4.5 comes with very neat and polished UI. Also it brings Oracle JET 6 support (latest JET version to date). Read more about it - New Features in Oracle Visual Builder...
Over the weekend we rolled out an update to your Oracle Developer Cloud Service instances which introduces several new features. In this blog we'll quickly...
Over the weekend we rolled out an update to your Oracle Developer Cloud Service instances which introduces several new features. In this blog we'll quickly review two of them - Support for the Fn project and integration with the Wercker CI/CD solution. These new features further enhance the scope of CI/CD functionality that you get in our team development platform. Project Fn Build Support Fn is a function-as-a-service open-source platform lead by Oracle and available for...
Over the weekend we rolled out an update to your Oracle Developer Cloud Service instances which introduces several new features. In this blog we'll quickly review two of them - Support for the...
This blog will help you understand how to use code merge as part of a build pipeline in Oracle Developer Cloud. You’ll use out-of-the-box build job...
This blog will help you understand how to use code merge as part of a build pipeline in Oracle Developer Cloud. You’ll use out-of-the-box build job functionality only. This information should also help you see how useful this feature can be for developers in their day-to-day development work. Creating a New Git Repository Click Project Home in the navigation bar. In the Project page, select a project to use (I chose DemoProject), and then click the + Create Repository button...
This blog will help you understand how to use code merge as part of a build pipeline in Oracle Developer Cloud. You’ll use out-of-the-box build job functionality only. This information should also...
Join Amis and Oracle for a Developer Meetup November 14th in Utrecht Netherlands GraalVM is several things, including a modern JIT compiler for the JVM and a...
Join Amis and Oracle for a Developer Meetup November 14th in Utrecht Netherlands GraalVM is several things, including a modern JIT compiler for the JVM and a generator of native images (to run applications as standalone executable - ultra small and super fast). It is also a Polyglot runtime engine that can run applications in many languages, such as Node and JavaScript, Python, Ruby, R as well as C/C++, Rust and Swift and of course JVM languages such as Scala, Groovy, Kotlin...
Join Amis and Oracle for a Developer Meetup November 14th in Utrecht Netherlands GraalVM is several things, including a modern JIT compiler for the JVM and a generator of native images (to...
Oracle is pleased to announce the general availability of Oracle VM VirtualBox 6.0, the latest release of the world’s most popular free and open source,...
Oracle is pleased to announce the general availability of Oracle VM VirtualBox 6.0, the latest release of the world’s most popular free and open source, cross-platform virtualization software. This release provides tight integration with Oracle Cloud Infrastructure, enabling organizations and developers to more easily and flexibly create applications on premises and deploy to the cloud with a few clicks. A key tool for developers and users creating cloud and local...
Oracle is pleased to announce the general availability of Oracle VM VirtualBox 6.0, the latest release of the world’s most popular free and open source, cross-platform virtualization software....
Are you a RESTafarian? Or are you a GraphQL aficionado? Either way you'll want to listen to the latest Oracle Groundbreaker Podcast, as a panel of experts...
Are you a RESTafarian? Or are you a GraphQL aficionado? Either way you'll want to listen to the latest Oracle Groundbreaker Podcast, as a panel of experts weighs the pros and cons of each technology. Representational State Transfer, known to its friends as REST, has been around for nearly two decades and has a substantial following. GraphQL, on the other hand, became publicly available in 2015, and only a few weeks ago moved under the control of the GraphQL Foundation, a...
Are you a RESTafarian? Or are you a GraphQL aficionado? Either way you'll want to listen to the latest Oracle Groundbreaker Podcast, as a panel of experts weighs the pros and cons of each...
On my todo list, I found a topic which I wanted to blog about for a long time. The problem is how to create a ViewObject, based on EntityObjects, which builds a...
On my todo list, I found a topic which I wanted to blog about for a long time. The problem is how to create a ViewObject, based on EntityObjects, which builds a full outer join between two tables. For those of you who don’t know about full outer joins in SQL here is a short description from https://www.w3schools.com/sql/sql_join_full.asp: The FULL OUTER JOIN keyword return all records when there is a match in either left (table1) or right (table2) table records. Note: FULL...
On my todo list, I found a topic which I wanted to blog about for a long time. The problem is how to create a ViewObject, based on EntityObjects, which builds a full outer join between two tables. For...