We are working on a workaround for authenticated users saving forms so they show up in their Tasks in Forms. I have made a single checkbox field that when checked and the form is submitted will route the document back to the initiator of the form. That works great.
This form uses the Custom Signature fields that were supplied at Empower 2014. We need a way for the form to look to see if the checkbox is selected. If so, don't make the signature field required. If it isn't checked, the signature field should still be required.
This is the code that disables the submit button unless the signature is applied:
//disable submit button until signature is confirmed $('.Submit').attr('disabled', 'disabled'); $('#donebutton').click(function () { $('.Submit').removeAttr('disabled'); $('.sigwarning').hide(); }) //end disable submit button code