Hi,
I have a bean like this:
class WorkOnExpense{
private
String inventory;
private Double amount;
private String check;
private String voucher;
private List items;
private List accountNo;
}
and i am setting all this values after getting it from datbase.
Now i am able to print values of inventory, amount check in
jsp page but not able to print List type properties. How to print this using <logic:iterate> or using nested tag.
for printing other values i am writing like this
<jsp:useBean id="workOnExpenseVO" type="com.ci.prize.view.vo.releaseexpense.WorkOnExpenseVO" scope="session"/>
<bean:write name="workOnExpenseVO" property="amount" />
and i am getting the list also using this.
<bean:write name="workOnExpenseVO" property="items" />
Now how can i iterate this list and print all the values in jsp page.
Please help me on this..
Thanks in advance!!
Mukesh.