RE: wrong request parameters sent

2008-01-05 Thread ravi_eze
From: > [EMAIL PROTECTED]> To: user@struts.apache.org> Subject: Re: wrong request > parameters sent> > > hi any help?> > > > ravi_eze wrote:> > > > hi,> > > > > i have 3 checkboxes(c1,c2,c3) enclosed in a form (theme: ajax;> > > validate=true

Re: wrong request parameters sent

2008-01-02 Thread ravi_eze
hi, the issue seems to be fixed. It seems like a problem with the xhtml theme thats not using .js files properly. i corrected the validation.js in xhtml and ajax folders, validationClilent.js and created a corrected theme (http://www.vitarara.org/cms/struts_2_cookbook/creating_a_theme : was vital

RE: wrong request parameters sent

2008-01-01 Thread Martin Gainty
> Subject: Re: wrong request parameters sent> > > hi any help?> > > > ravi_eze wrote:> > > > hi,> > > > i have 3 checkboxes(c1,c2,c3) enclosed in a form (theme: ajax;> > validate=true). I am trying to get the validation done by ajax and when

Re: wrong request parameters sent

2007-12-31 Thread ravi_eze
hi any help? ravi_eze wrote: > > hi, > > i have 3 checkboxes(c1,c2,c3) enclosed in a form (theme: ajax; > validate=true). I am trying to get the validation done by ajax and when i > un-check all boxes or check some of the boxes i see that always c3 is > being set in request parameter. > > w

Re: wrong request parameters sent

2007-12-31 Thread ravi_eze
i somehow feel checkboxes are not properly handled in struts 2.x any controversies??? ravi_eze wrote: > > hi, > > i have 3 checkboxes(c1,c2,c3) enclosed in a form (theme: ajax; > validate=true). I am trying to get the validation done by ajax and when i > un-check all boxes or check some of

Re: wrong request parameters sent

2007-12-31 Thread ravi_eze
hi, when i replace the provided code with: for (var i = 0; i < form.elements.length; i++) { var e = form.elements[i]; if (e.name != null && e.name != '') { if(e.type =='checkbox'){ if(e.checked==true)