Hi,
It may be a simple task, but I still can’t figure it out. I want to set the the check box field to null (no box chosen).
I try,
if ({check_field} == 'T'){
//some code
}else{
sc_error_message("text");
//uncheck the field
{check_field} = '';
}
and no success.