Hi, It would be great to be able to display checkboxes in the Advanced Print Views as either a checked box or an unchecked box instead of the "Yes" or "No" values. Here is pretty basic code of what I am thinking: <td><input id="charge" name="charge_check" type="checkbox"/> <script type="text/javascript">// <![CDATA[ function check(){document.getElementById("charge").checked = true;} function uncheck(){document.getElementById("charge").checked = false;} function ifChecked(){ if(${item.itemDetails.sections["Information"].fields.CHARGE.value} === "Yes"){ check(); } else{ uncheck(); } } ifChecked(); // ]]></script></td> This would make the checkboxes displayed in the Advanced Print Views a little less confusing. Thanks, Trent
Show More