Skip to main content
Participant
June 26, 2021
Answered

Quickinfo aus allen Formularfeldern löschen

  • June 26, 2021
  • 2 replies
  • 2492 views

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!

This topic has been closed for replies.
Correct answer Bernd Alheit

Something like this:

https://m.youtube.com/watch?v=HX1Q60DWhNc 

2 replies

try67
Community Expert
Community Expert
June 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 = "";
}
Bernd Alheit
Community Expert
Community Expert
June 26, 2021

With a script you can change or remove the tooltips.

Participant
June 26, 2021

Danke, danach habe ich schon gegoogelt und keines gefunden.

Wo könnte ich fündig werden?

 

 

Bernd Alheit
Community Expert
Bernd AlheitCommunity ExpertCorrect answer
Community Expert
June 26, 2021