Display checks on grid

Hello,
how can I show marked checkboxes on a grid? Just read noly, but if I’m using (0,1) as valuse, I would like to see the checked box instead of values:

Thank,
Luca

It’s really easy, you can do it by:

  • Create a text column, named informativeCheck o something
  • On the onRecord event, the code:
    if ({informativeCheck}==1) {
    {informativeCheck}="<img src="…">";
    }
    else{
    {informativeCheck}="<img src="…">";
    }