I am trying to iterate through a collection.  But get
"No getter method for property dailyList of bean myDailyRptForm"

Here is my code: 

DailyRptForm.jsp
                <%-- Display any daily info  --%>
                <logic:iterate id="dailyRpt" name="DailyRptForm"
property="dailyList">
                        <tr>
                                <td VALIGN="TOP">
                                        <bean:write name="dailyRpt"
property="variable1" filter="true"/>
                                </td>
                                <td VALIGN="TOP">
                                        <bean:write name="dailyRpt"
property="variable2" filter="true"/>
                                </td>
                                <td VALIGN="TOP">
                                        <bean:write name="dailyRpt"
property="variable3" filter="true"/>
                                </td>
                        
                    </tr>
                </logic:iterate>

DailyRptForm.java
...
    private ArrayList dailyList = null;         // Collection of daily xxxx
found
...
    public ArrayList getDailyList() {
        return (this.dailyList);
    }
    
    public void setDailyList(boolean isAdmin) throws ServletException {
        ...
    }
...
        

Any Ideas?

Thanks,

 John Collard

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to