Hey Everyone!
Hope there is someone out there that understands java much better than I do. I want to disable the submit button in a Laserfiche form based upon two different fields. I want the submit button to be disabled if Field 138 is "Yes" or if Field 131 is greater than 1000.00.
$(document).ready(function() { var $submit = $('.Submit'); $("#Field131").on("change", function() { if ($("#Field131").val() <1000.01) || ($("#Field138").val() =="No") { $('.Submit').prop('disabled',false); } else { $('.Submit').prop('disabled',true); } }).find('input.Submit').prop('disabled',true); });