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 ...
2
votes
1answer
171 views
FormEncode is returning my file upload as a Unicode object - How fix?
<form action="${h.url.current()}" method="POST" enctype="multipart/form-data">
<input type="file" name="your_file" />
</form>
class MyValidator(formencode.Schema):
...
2
votes
3answers
2k views
Pylons FormEncode with an array of form elements
I have a Pylons app and am using FormEncode and HtmlFill to handle my forms. I have an array of text fields in my template (Mako)
<tr>
<td>Yardage</td>
...
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
1answer
183 views
My formencode.variabledecode is returning an empty list - Pylons
HTML:
<input type="text" name="blah-0" value="test" />
<input type="text" name="blah-1" value="another test" />
Controller:
class myvalidator(formencode.Schema):
...
1
vote
2answers
205 views
How to render HTML form from schema using formencode?
I'm using formencode for validating and submitting forms in my Pylons application. The documentation says that it can be used also for generating forms, but there is no any example. I even found the ...
1
vote
1answer
407 views
Using Pylons validate and authenticate_form decorator
The validate and authenticate_form decorators don't seem to play nice together. This is my template:
<html>
<title>Test</title>
<body>
${h.secure_form('/meow/do_post')}
...
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
0answers
74 views
Python FormEncode class, any way to get support for html5 entities?
I am using FormEncode for form validation. Anytime there are html5 form elements, such as type="date" or type="search" on the page, errors are thrown. Additionally, I use a jQuery template system ...
0
votes
2answers
113 views
FormEncode validate: words divided by a comma
How to validate words divided by a comma by FormEncode ?
Something like this:
"foo1, foo2, foo3" -> ["foo1", "foo2", "foo3"]
0
votes
1answer
141 views
Passing state when using decorators (formencode) in pylons
I've met the same problem as this page:
http://www.mail-archive.com/pylons-discuss@googlegroups.com/msg14292.html
This is the main content from there:
I am using formencode to validate my
...
0
votes
1answer
256 views
Pylons formencode - How do I POST an array of data?
I have a form that is similar to the following:
Enter Name:
Enter Age:
[add more]
That add more field copies the Name and Age inputs and can be clicked as many times as the user wants. Potentially, ...
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 ...