|
[x]
Posted via EE Mobile
|
|
| Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
|
|
|
|
Asked by lachmann in Java Server Pages (JSP), Microsoft Excel Spreadsheet Software, Java Standard Tag Library (JSTL) & Server Tags
I have some .jsp code that generates output to excel.
I am having a problem accessing some of the variables.
I get values for p.reportItemKeyId and p.reportItemKeyValue
But I get nothing from the p.totalCreditAmountMonth* variables
The reportItemKeyId and reportItemKeyValue variables are of type String and the totalCreditAmountMonth* variables are type double if that matters.
Any ideas?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
|
<c:forEach items="${resultsByBranch}" var="p">
<tr>
<td>${p.reportItemKeyId} - ${p.reportItemKeyValue}</td>
<td><fmt:formatNumber type="currency" value="${p.totalCreditAmountMonth1}" currencySymbol="$"/></td>
<td><fmt:formatNumber type="currency" value="${p.totalCreditAmountMonth2}" currencySymbol="$"/></td>
<td><fmt:formatNumber type="currency" value="${p.totalCreditAmountMonth3}" currencySymbol="$"/></td>
<td><fmt:formatNumber type="currency" value="${p.totalCreditAmountMonth4}" currencySymbol="$"/></td>
</tr>
</c:forEach>
|
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625