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

Quickinfo aus allen Formularfeldern löschen

Community Beginner ,
Jun 26, 2021 Jun 26, 2021

Copy link to clipboard

Copied

Hallo,

 

ich habe einen Tabellenkonstrukt über 5 Seiten.

Es sind 280 Felder. Diese Felder wurden mit der Formularfunktion alle mit Feldnamen und entsprechender Quickinfo versehen.

Wie kann ich alle 280 Felder - nur die Quickinfo - auf einmal umbenennen oder nicht anzeigen lassen?

 

Vielen Dank für Tipps!

TOPICS
Create PDFs

Views

1.8K

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 2 Correct answers

Community Expert , Jun 26, 2021 Jun 26, 2021

You can use this script to remove all the tooltips from all the fields in the file:

 

for (var i=0; i<this.numFields; i++) {
	var f = this.getField(this.getNthFieldName(i));
	if (f==null) continue;
	f.userName = "";
}

Votes

Translate

Translate
Community Expert , Jun 26, 2021 Jun 26, 2021

Votes

Translate

Translate
Community Expert ,
Jun 26, 2021 Jun 26, 2021

Copy link to clipboard

Copied

With a script you can change or remove the tooltips.

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 ,
Jun 26, 2021 Jun 26, 2021

Copy link to clipboard

Copied

Danke, danach habe ich schon gegoogelt und keines gefunden.

Wo könnte ich fündig werden?

 

 

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 ,
Jun 26, 2021 Jun 26, 2021

Copy link to clipboard

Copied

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 ,
Jun 26, 2021 Jun 26, 2021

Copy link to clipboard

Copied

LATEST

Perfekt! Vielen Dank!

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 ,
Jun 26, 2021 Jun 26, 2021

Copy link to clipboard

Copied

You can use this script to remove all the tooltips from all the fields in the file:

 

for (var i=0; i<this.numFields; i++) {
	var f = this.getField(this.getNthFieldName(i));
	if (f==null) continue;
	f.userName = "";
}

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