Hi All
I am currently working on 5.2 Oracle Apex version. I have below sample code which is working fine , I have tried to do the same in 18.1 and it's not working.
Sample SQL
Select empno,
'<div class= "nameclass">'|| empname || '</div>'empname
From emp
In 5.2 , if I create a classic report with the above query.. I usually change the empname column in report attributes as standard report column
Then I will get the name value in report and the class will assign the particular column.
Later I will use dynamic action and I will add the class to the closest tr as parent class. Using that parent class I will add my own css color or font.
In 18.1 I don't see the option ' Standard Report column ' in classic report attributes
If I add the above query , it's taking the div class as a text and displaying div class + name in the report.
Also I can't able to add the parent class for the closest tr.
Suggest me how to fix that.
Regards,
San