| Author |
problem with displaying ArrayList values using <html:select> tag in jsp
|
a kishore
Ranch Hand
Joined: Sep 16, 2009
Posts: 82
|
|
Hi,
any help is appreciated.
im trying to populate values in jsp using <html:select> and <html ptions> tags. but im getting the following error.
javax.servlet.ServletException: javax.servlet.jsp.JspException: No getter method available for property status for bean under name org.apache.struts.taglib.html.BEAN
<td>Status<br>
<html:select size="6" property="status">
<html ptions collection="statusList" labelProperty="status" property="status" />
</html:select>
</td>
here status is one of the string in my form bean and statusList is arraylist from previous action. can anyone tell me as im following correct or not? but im sure that arraylist contains values and can print size using normal jsp scriplets before to these tags.
thanks in advance
kishore
|
 |
vivek mahajan
Greenhorn
Joined: Jun 18, 2009
Posts: 22
|
|
Hi Kishore Welcome,
you must have getStatus() method in your Bean class which is used to render the html elements usins <HTML:XXX> tags as your error shows you don't have it. Do you want the options to be generated dynamically by arraylist.
|
 |
a kishore
Ranch Hand
Joined: Sep 16, 2009
Posts: 82
|
|
thanks for reply,
im sorry to mention that, i have that getter method in my formbean. still im getting that error.
any idea to solve ?
|
 |
 |
|
|
subject: problem with displaying ArrayList values using <html:select> tag in jsp
|
|
|