How do you insert page breaks in Dynamic AX reports?
Asked
Active
Viewed 6,222 times
1 Answers
7
Call element.newPage()
. If your report has no code on it and you want a page break before a particular section, add an executeSection
method and call element.newpage()
before the call to super()
.
public void executeSection()
{
;
element.newPage();
super();
}

Jay Hofacker
- 3,439
- 20
- 14