Re: Custom view components Reply #1 – May 20, 2019, 03:21:53 AM Checkbox, Single SwitchSo in Action on page Yes is Green and No is Redin displayed field I thought why not same color for text, easy to see Yes in GreenColumn "Active" in db hold Yes or No.in List.php <?php if ($data['Active'] == 'NO') echo "<font color=\"#FF0000\"><strong>NO</strong></font>"; if ($data['Active'] == 'YES') echo "<font color=\"#00FF00\"><strong>YES</strong></font>"; else?>Hopes this helps Quote Selected 1 Likes