KX Community

Find answers, ask questions, and connect with our KX Community around the world.
KX Community Guidelines

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

  • vice-freak

    Member
    February 18, 2024 at 12:00 am

    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}}