How do you insert page breaks in Dynamic AX reports?
+1
A:
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
2008-10-11 13:55:05