How to show Checkbox in Advanced PDF?
I need to show the checkbox in Advanced PDF, checked/Unchecked based on the selection on Netsuite form. I did try doing this:
<input type="checkbox" name="isretired" checked="true"/>
This works, but it’s changeable, and the user can change the value (check or uncheck) on the PDF, while i want it for just viewing purposes, whatever is selected in the NetSuite form. Kindly suggest.
<#if ${FIELD} == true> <input type="checkbox" id="myCheck" disabled checked="true"/> <#else> <input type="checkbox" id="myCheck" disabled /> </#if>

thank you for ur answer. But system gives this error:
Attribute name “disabled” associated with an element type “input” must be followed by the ‘ = ‘ character.
Bakr
I usually use this to get what exactly in NetSuite UI
<#if record.checkbox == true> [<span style=”color:green; font-size:12px;”> √ </span>]<#else>[<span style=”color:red; font-size:12px;”> X </span>]</#if>