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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.