How can I change the heading sort icon in a APEX 5 classic report?
The customer just wants to have his own sort icons for desc and for asc. He does not like the new APEX sort icons.
ORACLE says:
Desupported Report Heading Sort Icons The following attributes used to define the report heading sort icons have been de-supported for interactive reports and classic reports: Ascending Image, Descending Image, Asc Image Attributes, and Desc Image Attributes. Instead of referencing images directly, Oracle Application Express now uses CSS to render sort icons. For interactive reports uses the following classes:
.a-Icon.icon-irr-sort-asc
and.a-Icon.icon-irr-sort-desc
For classic reports use the following classes:.a-Icon.icon-rpt-sort-asc
and.a-Icon.icon-rpt-sort-desc
I have no clear idea how that task can be made. I just know that APEX now uses CSS to render sort icons (a-Icon.icon-rpt-sort-asc
and .a-Icon.icon-rpt-sort-desc
).
It could be "Static Application Files" > #APP_IMAGES#sort_asc.png
/ #APP_IMAGES#sort_desc.png
.
I am new with APEX, my colleagues say changing a sort icon in classic report was an easy task in APEX 4.2 but this easy way is no longer available in APEX 5.
Does someone has a piece of code and some hints?