Menu
Date

2023

How to create a custom component in Oracle Visual Builder (VBCS)

VBCS By Apr 02, 2023 No Comments

In this post, we will see how to create a custom component in Oracle VBCS. Assuming a VBCS web application is already created (“mytestapp” is the application created for this example), the below steps will create a custom component in the application. Open application structure under web apps Expand Resources Right-click on the “components” folder and select Create option  Enter…

Creating Reusable Custom UI Components – Input text with action buttions

VBCS By Mar 06, 2023 No Comments

This post gives you access to one of my recent articles published on Oracle blogs. Creating Reusable Custom UI Components in Oracle VBCS. https://blogs.oracle.com/vbcs/post/creating-reusable-custom-ui-components In this article, you will learn how to create a custom component with an example of input text with two action buttons Accept and Cancel. This article covers, how to create a custom component complete actions…

Warning: SelectSingle: could not fetch data for selected value

Many times you may see this warning while working in the combination of ADP (ArrayDataProvider) with SingleSelect components in Oracle VBCS or Oracle JET. Warning: SelectSingle: could not fetch data for selected value In this post, we will see how to resolve this. We get this warning when we input an ADP variable as a data value to a SingleSelect…

Difference between Array Data Provider and Service Data Provider in Oracle VBCS

VBCS By Jan 03, 2023 No Comments

In this post, we will learn the difference between data providers available in Oracle VBCS. A collection of data from the backend that can be bound to collection components such as listView and table in UI is to be stored by the data provider. In VBCS, we have two types of data providers, which are ArrayDataProvider and ServiceDataProvider.  We will…