• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Warning and disable submit button when check box not ticked

New Here ,
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

Views

410

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 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");

 

Votes

Translate

Translate
Community Expert ,
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");

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
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);}
}
});

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 19, 2020 Dec 19, 2020

Copy link to clipboard

Copied

LATEST

Thank you for catching that JR. 

 

I should've clarified to delete that script and use the example Mouse-up event above.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines