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

łączenie tekstów z pól

New Here ,
Jan 18, 2021 Jan 18, 2021

Copy link to clipboard

Copied

Witam,

Proszę o pomoc jak przygotowac formularz aby teksty z kilku pól np. pole 1 "Imię", pole 2 "Nazwisko", pole 3 "data urodzenia" automatycznie połączyły się w polu nr 4. Konieczne jest aby pole nr 4 odświeżało się na bieżąco w trakcie wypełniania pól 1, 2 i 3.

przykład

pole 1 = JAN

pole 2 = KOWALSKI

pole 3 = 1992

pole 4 = JANKOWALSKI1992

Z góry dziękuję za pomoc

TOPICS
Edit and convert PDFs , General troubleshooting , PDF forms

Views

294

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 ,
Jan 18, 2021 Jan 18, 2021

Copy link to clipboard

Copied

You can do it using a calculation script for "box 4", like this:

event.value = this.getField("box 1").valueAsString+this.getField("box 2").valueAsString+this.getField("box 3").valueAsString;

Replace the field names in the code with your actual ones.

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 ,
Jan 20, 2021 Jan 20, 2021

Copy link to clipboard

Copied

LATEST
Hi,
It works!
Many thanks:)

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