tags:

views:

246

answers:

1

Hello,

I have been trying to add some check boxes in a pylons mako. However I don't know how to get their values in the controller. It seems that it can only get the first value of the check boxes. I tried using form encode but i got several errors. Is there an easier way to do this?

Thanks

A: 
McJeff
The hidden field ensures that NestedVariables sees there is supposed to be a form there. Though, you might just be able to read the query string and munch it yourself if you're just dealing with a collection of checkboxes.
McJeff