Hello,
I think, this problem many times was solve here,
but I don't find particular answer.
How I can use Form class, if I don't know how many
are rows? Must I use Collection? Maybe I can see example,
because I can not find decision.
Now my jsp:
<logic:notEmpty name="access" >
<logic:iterate id="daiktas" name="access" scope="session">
<html:multibox property="read" name = "daiktas" >
<bean:write name = "daiktas" property="read"/>
</html:multibox>
<bean:write name = "daiktas" property="read"/>
</logic:iterate>
</logic:notEmpty>
Form.class
private Collection read = new ArrayList();
//skip
public void setRead(Collection read)
{
this.read.addAll(read);
}
public Collection getRead()
{
return this.read ;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
//skip others params
read.clear();
}
but I get error:
description The server encountered an internal error (Internal Server Error)
that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: BeanUtils.populate
at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:988)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]