Quantcast
Channel: Scribus Forum
Viewing all articles
Browse latest Browse all 112

Erste Hilfe • Re: Anzahl Zellen und Formatierungsproblem

$
0
0
Hallo Silke,

meine erste Idee fürs Feldzählen wäre ein eigenes JavaScript. Etwa sowas:

Code:

function countFilledFields() {  let fields = ['f1', 'f2', 'f3', 'f4'],   // &c.  filled = 0;  for (let f of fields) {    if (this.getField(f).value != '') filled++;  }  return filled;}
Ich hoffe, das hilft einstweilen. Viele liebe Grüße,
Virgil

Statistik: Verfasst von Virgil — Sa 11. Jan 2025, 16:41



Viewing all articles
Browse latest Browse all 112