I am working on a proof of concept to see if PrinceXML has the features my company needs. I have run into a few issues and need some help.
1)
Prince log says following
In IE8 the above is rendered as a page break however PrinceXML seems to ignore it. I tried the following to see what would happen:
css
html
I didn't get the log warning but again it ignored the above code
what am I missing?
2)
Prince log showed following warning
any idea why? it still rendered correctly, if I remove the list tags then it no longer warns me about p tag.
3)I am trying to figure a way to put a table into the footer of any page I need it, not all pages, a table like following
Haven't been able to figure out if Prince would support being able to add html tags into footer that would be properly rendered.
4)If i have the following css rule
it correctly displays the message at bottom of a page, if I wanted to be able to have it not show on some but show on others by just adding a tag with some class I tried the following
issue is that it would create a blank page with no page counter at bottom where ever I put a p tag with class nopagenum, I wanted to cause it not to show a page counter in whatever page box I had this particular tag. Any ideas?
1)
<br style="page-break-before:always;" />
Prince log says following
Unexpected end tag : br
In IE8 the above is rendered as a page break however PrinceXML seems to ignore it. I tried the following to see what would happen:
css
br.pagebreak{page-break-before:always;}
html
<br class="pagebreak" />
I didn't get the log warning but again it ignored the above code
what am I missing?
2)
<p>
<ul >
<li>somedata</li>
<li>somedata</li>
</ul>
</p>
Prince log showed following warning
Unexpected end tag : p
any idea why? it still rendered correctly, if I remove the list tags then it no longer warns me about p tag.
3)I am trying to figure a way to put a table into the footer of any page I need it, not all pages, a table like following
<table>
<tr>
<td>row1</td>
</tr>
<tr>
<td>row2</td>
</tr>
</table>
Haven't been able to figure out if Prince would support being able to add html tags into footer that would be properly rendered.
4)If i have the following css rule
@page {
@bottom {
content: "Page " counter(page);
}
}
it correctly displays the message at bottom of a page, if I wanted to be able to have it not show on some but show on others by just adding a tag with some class I tried the following
@page no_pagenum {
@bottom {
content: " ";
}
}
p.nopagenum{page: no_pagenum ;
}
issue is that it would create a blank page with no page counter at bottom where ever I put a p tag with class nopagenum, I wanted to cause it not to show a page counter in whatever page box I had this particular tag. Any ideas?