cancel
Showing results for 
Search instead for 
Did you mean: 

Printing cheque details only in first page

Former Member
0 Kudos

Hello,

Designed adobe form, But having hard time to restrict data in first page. System fields are not available for page no in SFPSY.

Checked the Adobe scripts and tried lots of things writing in Initialize event and setting language to FormCalc and Run at to Client, but it's not working. As its new for me, i don't what i wrote.

My Structure is below

data.Main.Text

Text is the sub form, all text's are under sub form. Which i want to display in first page and not in consecutive pages. Could you let me know how to write the script in detail.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Solved My self as below;

Language: JavaScript

Run at: Client

var page = xfa.layout.page(this);

if (page <> 1) {

xfa.form.data.PAYMENTS.CHECK_INFO.presence = "hidden";

}