Hi,
I wanted to color the complete row based on some criteria. My query looks like this:
select QUIZ_ID,
QUIZ_NAME,
QUIZ_TOTAL_SCORE,
QUIZ_MINIMUM_SCORE,
START_DATE,
END_DATE,
ACTIVE_FLAG
from QUIZ;
When the ACTIVE_FLAG value = 'Y' then I want the row to be colored. I have used a technique which I found somewhere but it is not what I am looking for. It has colored the text not complete cell (shown below). But I want complete cell to be colored.
Thanks