The use "accounts" in s:iterator is wrong. It probably works if you can create 
something like "new int [7]".
 
> Date: Fri, 4 Dec 2009 12:50:36 -0600
> Subject: Re: checkbox : unchecked elements not in list
> From: elephant...@gmail.com
> To: user@struts.apache.org
> 
> Unchecked checkboxes in html forms don't submit a value. If you want true
> vs. false submitted back to the Java action, you'll need to use radio
> buttons.
> 
> -Brian
> 
> On Fri, Dec 4, 2009 at 12:31 PM, akoo <ogen...@yahoo.com> wrote:
> 
> >
> > I have following form
> >
> > <s:form action="updateAccount">
> > <s:iterator value="accounts">
> > <s:property name="account"/>
> > <s:checkbox name="accountStatus" value=={active}/>
> >
> > .....
> > </s:iterator>
> > </s:form>
> >
> >
> >
> >
> > In my action class I have following
> >
> > public UpdateAccount account
> > {
> > List accountStatus;//list to hold all the checkbox values
> > List accounts; //list to hold all the accounts values
> >
> > // getter setters
> >
> > public String execute()
> > {
> > //iterate through the list of accounts/
> > //set account status value to that list accountStatus
> > }
> >
> > }
> >
> > Ideally I would want the accountStatus list to contains a list of "true" or
> > "false" strings, however accountStatus list only seems to contains only the
> > checked
> > elements...
> > --
> > View this message in context:
> > http://old.nabble.com/checkbox-%3A-unchecked-elements-not-in-list-tp26636367p26636367.html
> > Sent from the Struts - User mailing list archive at Nabble.com.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> > For additional commands, e-mail: user-h...@struts.apache.org
> >
> >
                                          
_________________________________________________________________
Windows Live: Make it easier for your friends to see what you’re up to on 
Facebook.
http://go.microsoft.com/?linkid=9691816

Reply via email to