Home › Forums › kdb+ › Column of boolean values not converting to checkboxes within a Data Grid › Re: Column of boolean values not converting to checkboxes within a Data Grid
-
Perfect solution, thank you kindly ivankk.
For anyone reading this in the future, who would like to have green ticks and red crosses, please view the (slightly altered) code below:
{{#if thisRawValue}}
<i class=”fa fa-check” style=”color: #00c000″></i>
{{else}}
<i class=”fa fa-times” style=”color: #c00000″></i>
{{/if}}