Hi all. I'm on APEX 22.2.6.
In my page I have an interactive grid with a list of codes and descriptions.
In page property under CSS inline section, I have created this class:
.format{
background-color: var(--u-color-14);
font-weight:bold;
}
Now I want to apply this class on my interactive grid based on this condition:
if substr(code,4,2) = 00 then I must apply my class format
else do nothing.
How can achieve this?
Thanks in advance for your help.
Fabrizio