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

Felder ein/ausblenden abhängig von der Auswahl in einem Dropdown Feld

Community Beginner ,
Jul 17, 2024 Jul 17, 2024

Copy link to clipboard

Copied

Hallo!

Ich möchte in einem PDF Formular, dass 2 Felder ein bzw. ausgeblendet werden, abhängig von der Auswahl in einem Dropdown Feld.

Anbei das PDF.

 

Wenn im DropDown Feld (WA/FB) folgendes ausgewählt wird:
1. WA
2. WA
3. WA
sollen die Felder "Text10" und "Signatur5" eingeblendet werden.

Werden jedoch
-
FB0
FB1
FB2
FB3
FB4
ausgewählt, sollen die Felder "Text10" und "Signatur5" ausgeblendet werden.

Wie muss ich da vorgehen? Wie es mit einem Optionsfeld zum anklicken funktioniert, weiß ich. Da ich jedoch ein DropDown habe und mehrere Optionen, weiß ich nicht weiter. Ich kenne auch nicht die Befehle für ein Script zum verstecken der Felder.

Danke

TOPICS
Create PDFs , PDF

Views

233

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 ,
Jul 18, 2024 Jul 18, 2024

Copy link to clipboard

Copied

As the custom Validation script of the drop-down field, enter the following:

 

if (event.value=="1. WA" || event.value=="2. WA" || event.value=="3. WA") {
	this.getField("Text10").display = display.visible;
	this.getField("Signature5").display = display.visible;
} else {
	this.getField("Text10").display = display.hidden;
	this.getField("Signature5").display = display.hidden;
	this.resetForm(["Text10", "Signature5"]);
}

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 Beginner ,
Jul 18, 2024 Jul 18, 2024

Copy link to clipboard

Copied

LATEST

Vielen Dank für die Hilfe

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