Hi Jay,
session.setAttribute("recurringTaskSummary",v_recurringTaskSummary),
SpRecurringTaskSummary [...] has certain variables such as
EmployeeName, EmployeeRef etc.
I am using logic:iterate as follows:
<logic:iterate id = "rtSummary" name="recurringTaskSummary">
<bean:write name="rtSummary"/>
</logic:iterate>
The output is name of objects. However I want to somehow access the
variables employeename, employeeref etc. How do I do that ?
Just do something like :
<logic:iterate id="rtSummary" name="recurringTaskSummary">
<bean:write name="rtSummary" property="employeeName"/>
</logic:iterate>
Don't forget to use the bean naming conventions, though.
--
Stéphane ZUCKERMAN
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]