mohamed ebrahim faisal [mailto:[EMAIL PROTECTED] wrote:
> <html:select property="report" >
>       <html:options name="beanname" property="period_reports" />
</html:select>.
> I am getting the error message as , there is no getter method for
property 
> "period_reports" under bean "beanname", but infact i have one. The 
> "period_reports" property is of type "ArrayList".
> can anyone pls solve it.

Read the JavaBeans specification to find out what your property name
will translate to for get/set methods.  My first guess is
getPeriod_reports, but it might be getPeriod_Reports instead.  Then make
sure your get/set methods match.

If you use periodReports as a property name, and have a getPeriodReports
method, it will work, and you code will look like everyone else's. ;)

-- 
Wendy Smoak
Applications Systems Analyst, Sr.
Arizona State University, PA, IRM 

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

Reply via email to