Mark Thomas schrieb: > I have a small javascript function that attempts to call an exposed > Turbogears method expecting a Python list as an argument. The function > takes the array-like NodeList of checkboxes in a form and attempts to > send the values of the positively-checked boxes back to Turbogears.
Why don't you just turn the checkbox status in to a normal query string and let CherryPy turn the request variables into a list value? I haven't tested this, but I think you could use MochiKit's "queryString" and "formContents" function for that: http://mochikit.com/doc/html/MochiKit/Base.html#fn-querystring http://mochikit.com/doc/html/MochiKit/DOM.html#fn-formcontents Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

