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
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
> 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
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
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
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)
6 matches
Mail list logo