2012-10-10 77 views
1

我正在使用displaytag導出PDF。如果我在顯示:列中給出total =「true」,最後一行包含總量,並且我可以使用numberformat格式化該值,但是在PDF中總值顯示爲未格式化。下面給出的是我的代碼片段。如何在輸出pdf格式中顯示總價值行?

<display:column property="discountAmt" titleKey="DiscountAmt" 
       total="true" format="<%=currency_format%>"/> 

<display:column property="orderGrandTotal" titleKey="GrandTotal" 
       sortable="true" format="<%=currency_format%>" class="numeric" 
       total="true"/> 

在表中,包含總值的最後一行像1,913.30和12,033.50。但在PDF中顯示爲1913.3和12033.5。

請給我一個想法來格式化這個。

回答

相關問題