Hi,
I have a grid with a html image field and I need to show or mask that html image depending on a certain condition in the sql result.
If a field =2, mask the html image
if the field = 1, show the html image
I dont want to hide the complete column but just that element on specific row
how can I proceed I<ve tried this onrecord event but it do nothing
if({etat}==2){
sc_field_display({imprimer}, off)
}else{
sc_field_display({imprimer}, on)
}
Thanks