| Author |
DynaActionForm and java.lang.Integer[]
|
Perindevi Peramur
Greenhorn
Joined: Dec 24, 2005
Posts: 10
|
|
Hello everyone, I have this in my struts-config file : <form-bean name="emailQueueForm" type="org.apache.struts.action.DynaActionForm"> <form-property name="noOfFollowUps" type="java.lang.Integer[]"/> .... </form-bean> In my jsp, I have the following : <logic:iterate id="com" name="shop" indexId="idx"> ... <html:text property="noOfFollowUps" size="3" maxlength="3"></html:text> ... </logic:iterate> So, when the jsp loads, I have "[Lj" written in all the textbox as default value.Thats because its an integer array. I dont want this to be displayed. I dont want to use value="" in the text tag because there is an add button in the jsp, once i enter values in some text boxes and click the add button, the values should be added and automatically displayed in the text box. I cannot use JSTL. I have to use struts only. So, how do I proceed ? Thanks in advance Suman
|
 |
 |
|
|
subject: DynaActionForm and java.lang.Integer[]
|
|
|