I am looking to know how to have a checkbox which is checked on the initial form appear unchecked on the document saved into Laserfiche? I am just using this as an example but the functionality is what I am looking for.
I am able to hide fields on the initial form and have them show up in the document saved to Laserfiche without issue but when trying to do the opposite I am having problems.
In regards to checking the box on initial form and having it unchecked in the document saved to Laserfiche I would expect the code below to work but it does not uncheck the box when saved to Laserfiche.
$(document).ready(function () { document.getElementById('Field162-0').checked = false; // CODE TO HIDE FIELDS ON FORM BUT NOT IN LF DOCUMENT if($('input[name="routingResumeId"]').val() =="") { document.getElementById('Field162-0').checked = true; } });
I am actually trying to do something similar with showing a Custom HTML field on the initial form (which is only instructional information for the user) and then hide it in the document saved to Laserfiche with the same issues.
Is there something I am missing? Any thoughts or suggestions?