HTML to PDF / DOCX / RTF Java converter library › Forums › PD4ML v3 Archived Forums (Read Only) › Troubleshooting › German umlauts within custom JSP tag › Re: Re: German umlauts within custom JSP tag
Nope.. The issue that header/footer shows the umlauts without any problems.. But body sometime fails with ä as I said.
The code looks like that:
<pd4ml:usettf from="java:fonts" serif="Times New Roman" sansserif="Arial" monospace="Courier New" /><br />
<pd4ml:page.header><br />
<t:pdf-header companyName="${companyName}" personName="${personName}" address="${companyAddress}" /><br />
</pd4ml:page.header><br />
<pd4ml:page.footer height="50"><br />
<t:pdf-footer partner="${invoice.partner}" /><br />
</pd4ml:page.footer><br />
<t:pdf-invoice invoice="${invoice}"><br />
<jsp:attribute name="title">${title}</jsp:attribute><br />
<jsp:body><br />
<table class="table padded"><br />
<tr class="header"><br />
<th width="10%" class="first"><spring:message code="pdf.finance.invoices.executionDate" /></th><br />
<th width="50%"><spring:message code="pdf.finance.invoices.product" /></th><br />
<th width="5%" class="text-right"><spring:message code="pdf.finance.invoices.quantity" /></th><br />
<th width="15%" class="text-right"><spring:message code="pdf.finance.invoices.pricePerItem" /></th><br />
<th width="10%" class="text-right"><spring:message code="pdf.finance.invoices.vat" /></th><br />
<th width="10%" class="text-right"><spring:message code="pdf.common.finance.amount" /></th><br />
</tr></table><br />
</jsp:body><br />
</t:pdf-invoice>
So inside <jsp:body>
there are issues..