I'm using Flask with WTForms (doc) on Google App Engine. What is the best way to generate an field with an empty value for a select field?

form.group_id.choices = [(g.key().id(), g.name) for g in Group.all().order('name')]

Is there something like "blank=True" for the form field?

myfield = wtf.SelectField()
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Can you just prepend an empty pair to the list?

form.group_id.choices.insert(0, ('', ''))
link|improve this answer
feedback

if it's a QuerySelectField, you can add this parameters like this

allow_blank=True, blank_text=u'-- please choose --'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.