Below is a simple trick to set the width of report columns in Oracle APEX -Navigate to the interactive reportClick on the column for which you want to set the widthGo to HTML expression under Column Formatting section and type this construct -<span style="display:block; width:200px">#COLUMN_NAME_OF_REPORT#</span>For...
Wednesday, January 29, 2020
Sunday, January 19, 2020
Force Upper case value in Oracle APEX Text fields
CSS is one of the best ways to quickly customize some of the Apex constructs.Follow below steps to force Upper or Lower case values in a Text field -Navigate to the Item PropertyGo to Advanced section -> Custom AttributesEnter below CSS to force Uppercase values:style="text-transform:uppercase"Enter below CSS to force Lowercase values:style="text-transform:lowercase"Save and run the page. With...