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...28 readsOracle VBCS
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...462 readsOracle VBCS
Mayukh Mitramayukhmitra.hashnode.dev·Apr 11, 2023Updating and Deleting Selected Records in Read-Only JET Table (Part - 2)Hello All. Hope you all are well and good. In this blog, I will discuss how you can update or delete a record in a read-only Oracle JET table once you have inserted a new record in it. In my previous blog Inserting New Records in Read-Only JET Table ...640 readsOracle
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...792 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...761 readsOracle VBCS
Mayukh Mitramayukhmitra.hashnode.dev·Dec 20, 2022Single Select usage in Oracle VBCSHello All, When developing enterprise web application, we often encounter a scenario where we need to add a drop-down list component in our web page and this drop-down list should show all the possible values that end-user can select. With the help o...1.0K readsOracle VBCS