Satish Kumarsatishkumar.hashnode.dev·Nov 9, 2024Custom Data Label for oj-chart in VBCSRecently there was a requirement to show custom label on a Pie Chart instead of the standard label which shows the percentage by default. Here is how the data is presented by default. Here the label shows the percentage (31.6%) and on hovering it sho...Oracle VBCS
Satish Kumarsatishkumar.hashnode.dev·Oct 20, 2023Internationalize App UIs to Support Multiple LanguagesTo ensure the App UIs we are building are translated into multiple languages, we need to save the text associated with any new UI components to a translation resource file. For standard VBCS we have examples in vbcookbook as well as some docs. You ca...41 readsOracle
Satish Kumarsatishkumar.hashnode.dev·Aug 2, 2023How to Export Data into multiple Excel Sheets in VBCSRecently I had come across a requirement where there was a need to export the data into multiple sheets of an Excel File. So generally VBCS has a sample custom component to export the data from a DataProvider into CSV called oj-sample-export-data . T...403 readsOracle VBCS
Satish Kumarsatishkumar.hashnode.dev·Feb 20, 2023Redwood Theme vs Template PatternRecently I have come across a lot of instances where there is confusion between Redwood Theme and Redwood Design System (aka Template Pattern). So let's get some more details on what these are. What is Redwood? Redwood is the name of Oracle’s next-ge...750 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·Jan 29, 2023Editable Table in Oracle VBCS with Asynchronous Edit HandlingUPDATE NOTE (22/11/2023): As of the latest Release 23.10, VB has provided an easier way to achieve this functionality. Locate tableBeforeRowEdit under eventListners in the JSON code and add "asyncBehavior": "enabled" for both events. The final code s...739 readsOracle VBCS
Satish Kumarsatishkumar.hashnode.dev·Dec 11, 2022How to Filter Table Data in Oracle Visual BuilderWe often have Tables in our VB screens which can contain large numbers of rows. We also may have requirements that provide a way to end users to filter data within it. If the table is hooked to SDP then you can follow this method in vbcookbook In thi...829 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·Nov 15, 2022Add Attachments to AP Invoice using REST APIRecently we were working on a VBCS UI to create AP invoices. Part of that requirement was that users should be able to attach documents as well. Since it was from a VBCS UI we were looking for a pure REST solution as we did not want to build any wra...772 readsOracle Cloud
Satish Kumarsatishkumar.hashnode.dev·Oct 4, 2022ZIP files in VBCSIn this article let us see how to zip the files and use its contents downstream. The sample application is present in my GIT here. One of the use case for this functionality is where the user can upload a data file and we need to generate a FBDI zip ...238 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·Sep 28, 2022Base64 Encode and upload file to UCM from VBCSIn this article let us see an approach to upload the file selected by the user to UCM using VBCS. We will be using the REST service direct from VBCS without any OIC wrapper. While most of the steps mentioned here are simple the places where it gets t...527 readsvbcs
Satish Kumarsatishkumar.hashnode.dev·May 14, 2022How to parse Excel (XLSX) data in Oracle Visual Builder using JS libraryIn one my previous blog I had written about parsing CSV data and that was very well received. Today let us use the popular SheetJS library to parse data from Excel to JSON/CSV. Import the library in Visual Builder Since we need to use a third-party l...475 readsvbcs