I have a display only page item for which I derive the text to be used in a pl/sql block by concatenating few other page items' values and strings. I finally add <span style .... to it so that the display is in the required style.
Example : :P18_VALID :='<span style="color:green;font-weight:bold;font-size:13px">'||:P18_MRI || ' is already associated to ' || LV_ORG||'</span> ';
This worked well in 18.2. i.e. Data was displayed in read only mode in green colour , 13 px font.
When we imported this application in 20.2, we noticed that the display of the page item is neither in the green color, but the actual text displayed itself is <span style="color:green;font-weight:bold;font-size:13px">'||MRI_
xxxx|| ' is already associated to ' || XXXX ||'</span> .
Ideally, it should display MRI_xxxx is already associated to XXXX in green colour in bold..
Any ideas what can correct this behaviour please?