Hi All, Does anyone know what the evaluation would...
# advancedpdf
k
Hi All, Does anyone know what the evaluation would be for a checkbox on a template?
<#if transaction.checkbox = THIS BIT>
p
In theory it should be
<#if transaction.checkbox = true>
, since checkboxes are supposed to be booleans. I have come across it being a string a few times before though so had to use
<#if transaction.checkbox=="T">
n
"Yes" or "No"
k
Thanks Neil😜