| Author |
html:Checkbox
|
Ashish Bassi
Greenhorn
Joined: Aug 22, 2007
Posts: 11
|
|
I have an a Form class myForm extends ActionForm { SportsBean sportBean; //sportsBean getters n setters } class SportsBean { private cricket; private hockey; //getters and setters } Now in my Jsp, i want to associate 2 checkboxes with these porperties in sportsbean im doign somethign like this in my jsp <html:checkbox property="sportsBean.cricket"> </html:checkbox> but i get an error javax.servlet.ServletException: Invalid argument looking up property: "sportsBean.cricket" of bean: "org.apache.struts.taglib.html.BEAN"
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
Make sure you instantiate the bean when it is defined. Example:
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: html:Checkbox
|
|
|