Introduction:
This post talks about how to avoid auto wrap the fields available in the Interactive Report in the Oracle APEX.
Procedure:
By default the Oracle APEX will do the auto warp the fields when there are quite many columns available in the Interactive report. To avoid such wrapping, you can follow the below given steps,
- Create a Interactive Report region with many columns.
- After creating a report, navigate to report attributes and assign the static ID for the column that you want not to shrink.
- Then navigate to JavaScript section available in the page header and place the following code in Function and Global variable declaration,
Code :
$(function() {
$(‘td[headers=”col_static_id”]’).attr(“nowrap”,”nowrap”);
});
This post uses the little jQuery to avoid wrapping of fields in the Interactive report.
Call To Action:
For Oracle apex development and customization please do contact our company website https://doyensys.com/
Conclusion:
We can also add the other attributes/property in the same way to decorate the column based on the Customer needs.
Recommended Posts