Tagged Questions

2
votes
2answers
225 views

Rerendering a Pylons form with a querystring parameter after FormEncode validation fails

My question may be the same as this, but the suggested answer didn't seem to help (or I didn't understand it correctly): Pylons FormEncode @validate decorator pass parameters into re-render action I ...
1
vote
1answer
195 views

How to get Pylons formencode validator to ignore some fields

I have a form that has some input text boxes and well as some select boxes. I have validation working perfectly on the textboxes. I don't care if any of the select boxes are left defualt or not, but ...
1
vote
2answers
474 views

Pylons FormEncode @validate decorator pass parameters into re-render action

I am attempting to use the validate decorator in Pylons with FormEncode and I have encountered an issue. I am attempting to validate a form on a controller action that requires parameters, and if the ...
1
vote
1answer
1k views

FormEncode, pylons, and mako example

I'm working in pylons with mako, and I'd like to create forms and validations with FormEncode for several parts of my application. I can't seem to find any good examples of the whole process. My ...
0
votes
2answers
686 views

Pylons/Formencode With Multiple Checkboxes

I ran up against a few problems with Pylons/Formencode today when it came to validating multiple checkboxes. As a bit of background I have something like this in my Mako template: <input ...