Er, a boo-boo on my part when compared to the source... He uses $$()
to directly select the checkboxes, rather than starting at the parent
container and using select(). i imagine it would work either way, but
the original $$() is one step more direct.
-joe t.


On Jan 11, 7:36 pm, "joe t." <thooke...@gmail.com> wrote:
> Couldn't this also work (tweak to fit)?:
>
> var values = $('containerID').select('input:checked["type=checkbox"]
> ["name=checkGroup[]"]').pluck('value');
>
> i use that line for radio groups. Got it 
> from:http://stereointeractive.com/blog/2008/06/05/get-radio-button-value-u...
> -joe t.
>
> On Jan 11, 6:38 am, "Alex McAuley" <webmas...@thecarmarketplace.com>
> wrote:
>
> > I use something like this ..
> > var array=new Array();
> > $$('.myClassName').each(function(e){
>
> > if(($e).checked==true) {
> > array.push($(e).value);
>
> > }
> > });
>
> > where....
>
> > <input type="checkbox" class="myClassName" value="I am checked" />
>
> > HTH
>
> > Alex Mcauleyhttp://www.thevacancymarket.com
>
> > ----- Original Message -----
> > From: "Hussein B" <hubaghd...@gmail.com>
> > To: "Prototype & script.aculo.us" <prototype-scriptaculous@googlegroups.com>
> > Sent: Monday, January 11, 2010 8:11 AM
> > Subject: [Proto-Scripty] Collecting checked checkboxes
>
> > > Hey,
> > > I have a checkbox in front of each row in my table.
> > > Upon clicking on submit button, I want to collect the checked boxes
> > > and send values via Ajax request.
> > > How to iterate over the checked boxes?
> > > Thanks for help and time.
>
> > --------------------------------------------------------------------------------
>
> > > --
> > > You received this message because you are subscribed to the Google Groups
> > > "Prototype & script.aculo.us" group.
> > > To post to this group, send email to
> > > prototype-scriptacul...@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > prototype-scriptaculous+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/prototype-scriptaculous?hl=en.
>
>
-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptacul...@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.


Reply via email to