Code:
PD4PageMark footer = new PD4PageMark() {
public String getHtmlTemplate(int pageNumber) {
if ( pageNumber % 2 == 0 ) {
return "<html><body>some left aligned stuff...";
} else {
return "<html><body>some right aligned stuff...";
}
}
};
pd4ml.setPageFooter(footer);
every body help me please, it's very urgent.
i have followed the code above for printing even condition but something wrong here. if i didn't print the first page number, the footer page didn't print . if i tried by odd condition then the footer page will print.