0
New Here
,
/t5/acrobat-sdk-discussions/warning-and-disable-submit-button-when-check-box-not-ticked/td-p/11627146
Nov 25, 2020
Nov 25, 2020
Copy link to clipboard
Copied
Hi There,
I need to add a JS on adbole fillable form on submit button. when Checkbox1 is not ticked give a warning an desable submit button, when check box is ticked submit button enables to email the form.
appreciate your help.
Dee
TOPICS
Acrobat SDK and JavaScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Community Expert
,
Nov 25, 2020
Nov 25, 2020
You can add the line below to your original script or as an additional Mouse-Up event in the same button field like:
var f = this.getField("Checkbox1");
var check = (f.isBoxChecked(0)) ? this.mailDoc({cTo: "justMe@mailMe.com"}) : app.alert("Please see Disclaimer at the bottom of this page and check the box to confirm that you understand the required approvals prior to submitting this request");
Community Expert
,
/t5/acrobat-sdk-discussions/warning-and-disable-submit-button-when-check-box-not-ticked/m-p/11627476#M269
Nov 25, 2020
Nov 25, 2020
Copy link to clipboard
Copied
You can add the line below to your original script or as an additional Mouse-Up event in the same button field like:
var f = this.getField("Checkbox1");
var check = (f.isBoxChecked(0)) ? this.mailDoc({cTo: "justMe@mailMe.com"}) : app.alert("Please see Disclaimer at the bottom of this page and check the box to confirm that you understand the required approvals prior to submitting this request");
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/acrobat-sdk-discussions/warning-and-disable-submit-button-when-check-box-not-ticked/m-p/11627914#M270
Nov 26, 2020
Nov 26, 2020
Copy link to clipboard
Copied
It doesn't look like JavaScript…
$('#submit').prop("disabled", true);
$('input:Checkbox1').click(function() {
if ($(this).is(':checked')) {
$('#submit').prop("disabled", false);
} else {
if ($('.checks').filter(':checked').length < 1){
$('#submit').attr('disabled',true);}
}
});
Acrobate du PDF, InDesigner et Photoshoptographe
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-sdk-discussions/warning-and-disable-submit-button-when-check-box-not-ticked/m-p/11693833#M86018
Dec 19, 2020
Dec 19, 2020
Copy link to clipboard
Copied
Thank you for catching that JR.
I should've clarified to delete that script and use the example Mouse-up event above.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

