i'm trying to do this:
for int (i=0; i < paypalResponse.getErrors().length; i++) {
String message= paypalResponse.getErrors(i);
}
like so in jx<jx:forEach var="item" items="${ paypalResponse.getErrors()}">
<tr>
<td>${item}</td>
</tr>
</jx:forEach>
but this only returns an object and not the object value. What am I missing? I tried ${item[0]} but that returns nothing.
regards
Andrew
