Oracle APEX - Dynamic Table Cell Colour
Using the following query as our example
select
column_a,
case when column_a = 1 then 'Y' else 'N' end as column_b
from table_name;
HTML Expression for table column. Note the use of substitution strings.
<span data-value=#COLUMN_B#>#COLUMN_A#</s...
davidferrol.hashnode.dev1 min read