How 'bout something like
  var paramsA = Form.serializeElements( $("frm").getInputs('checkbox',
"typeA"),true);
  var paramsB = Form.serializeElements( $("frm").getInputs('checkbox',
"typeB"),true);
  var paramsC = Form.serializeElements( $("frm").getInputs('checkbox',
"typeC"),true);

  var params =  paramsA + '&' + paramsB + '&' + paramsC;

Yeah... I know it's not as sexy as defining the array and running
through an 'each' loop but I bet it would work :-)

(With string concatenation, you could, of course, do it all in a
single variable)

Al

On Dec 22, 11:27 am, Neede <chugalu...@gmail.com> wrote:
> Hello,
>
> I've run into a response performance problem with IE6.  My form has a
> 4 scrollable tables that each contain up to 2000 check boxes (names:
> typeA, typeB, typeC, typeD).  serialize() is taking a long time to
> process, so i was attempting to speed it up by only serializing the
> check boxes that I need by using:
>
> Form.serializeElements( $("frm").getInputs('checkbox', "typeA"),
> true);
>
> this works fine but i also want to serialize typeB and typeC. I need
> everything but typeD which happens to have the the greatest number of
> checkboxes.
>
> I tried creating an array for the check box names
> arChkBoxes = [ "typeA", "typeB", "typeC"];
> var params = Form.serializeElements( $("frm").getInputs('checkbox',
> arChkBoxes ), true);
>
> Any help on the correct syntax or ideas on how to speed up the
> serialization is appreciated!

--

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