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

get Alert when max characters reached

New Here ,
Aug 22, 2018 Aug 22, 2018

Copy link to clipboard

Copied

I have set a character limit for a Textfield.

i try to show the remaining characters without success.

alternatively i try to show an error message when the limit is reached

var laenge = this.getField("Overline").value;

event.rc = true;

if (laenge > 10)

  {

     app.alert("Max. 40 characters incl. spaces");

     event.rc = false;

  }

else

{

    event.target.textColor = color.black;

}

Is there a way to display the remaining characters?

if not, what am I doing wrong with the code here?

TOPICS
Acrobat SDK and JavaScript , Windows

Views

452

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

LEGEND , Aug 22, 2018 Aug 22, 2018

A more complex way of performing this task:

Countdown Maximum Length Input

The approach used by D.P. Story is to use the "AFMergeChange()" function to obtain the length of the form field being filled in dynamically.

Votes

Translate

Translate
Community Expert ,
Aug 22, 2018 Aug 22, 2018

Copy link to clipboard

Copied

Try this:

var laenge = this.getField("Overline").value.length;

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
New Here ,
Aug 22, 2018 Aug 22, 2018

Copy link to clipboard

Copied

unfortunately did not work.

i also try var laenge = this.getField("Overline").value.toString().length; without success.

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 ,
Aug 22, 2018 Aug 22, 2018

Copy link to clipboard

Copied

Use following lines:

console.show();

var laenge = event.value.length;

console.println("laenge: " + laenge);

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 ,
Aug 22, 2018 Aug 22, 2018

Copy link to clipboard

Copied

Where did you place this code? Under what event?

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
LEGEND ,
Aug 22, 2018 Aug 22, 2018

Copy link to clipboard

Copied

LATEST

A more complex way of performing this task:

Countdown Maximum Length Input

The approach used by D.P. Story is to use the "AFMergeChange()" function to obtain the length of the form field being filled in dynamically.

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