cancel
Showing results for 
Search instead for 
Did you mean: 

Header data is displaying only on first page for each item but not on Overflow page of that item

0 Kudos

Hi All,

I have an Issue where in header data for the corresponding line item is not printed on the overflown page but only on the first page of that corresponding line item.

Can anyone help on this as soon as possible.

Thank and Regards

Mohammed

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

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

var fields = 0;

fields = xfa.layout.pagecontent(currpage-1;"field",0);

for(I=0;i<=fields.length-1;i++)

{

if(fields.item(I).name == "ITEM_HEADER" )

{

this.rawValue = fields.item(I).rawValue;

}

}

above logic works:)

Answers (0)