on 2021 Mar 04 5:27 AM
Hi All
I have an interactive adobe form which uses gateway service. now I have to print the same content of the form for 4 copies but with different header. for that I have written a java script for that text field but the print is coming only for the 1st page
Form.#pageSet[0].mstDummy.BORDER.Header_Addresses.Header_Data.frmAccountAddress.Cell2::ready:layout - (JavaScript, client)
var divisor = (xfa.layout.pageCount() / 4);
var copy = Math.floor((xfa.layout.page(this) - 1 )/divisor) ;
switch (copy)
{ case 0: this.rawValue = "Original for buyer";
break;
case 1: this.rawValue = "Duplicate for Transporter";
break;
case 2: this.rawValue = "Assesse Copy";
break; case 3:
this.rawValue = "Extra Copy";
break;
default: break;
}
I have referred to the below link but my project is not agreeing to do multiple configs.
Hence can you suggest
User | Count |
---|---|
76 | |
10 | |
9 | |
7 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.