Hi

I am a newbie to struts... 

I have a dynamic table which has a <html:text >  and a <html:select> . The user cliks 
on a add button and enter values in each row of the table and submits the form. 

How can I repopulate the valuse if validation fails.

Can some body give a working exapmle of the Action Form that is required for this kind 
of requirement.

I found this in Ted Husted site but had no clue as what he is trying to do, What is 
RESULT etc
—------------------------------------------------------------------------------------------
<TABLE><html:form action="/item/StoreCategory"> 
<logic:iterate name="RESULT" property="iterator" id="row">
<TR>
<TH>name</TH>
<TH>category</TH>
</TR>
<TR>
<TD><bean:write name="row" property="name"/></TD>
<TD><%-- REMEMBER TO SPECIFY THE ITERATE ID AS THE NAME --%>
<html:select name="row" property="category">
<html:option value="ART">Art</html:option>
<html:option value="AUT">Automotive</html:option>
<%-- ... --%>
</html:select>
<%-- REMEMBER TO SPECIFY THE ITERATE ID AS THE NAME --%>
<html:hidden name="row" property="key"/>
</TD>
</TR>
</logic:iterate>
<TR>
<TD colspan="2" align="right">
<html:submit/>
</TD>
</TR>
</html:form>
</TABLE>
—----------------------------------------------------------------------------------------

Reply via email to