WTForms: How to select options in SelectMultipleField? WTForms: How to select options in SelectMultipleField? python python

WTForms: How to select options in SelectMultipleField?


You can use the choices and default keyword arguments when creating the field, like this:

my_choices = [('1', 'Choice1'), ('2', 'Choice2'), ('3', 'Choice3')]SelectMultipleField(choices = my_choices, default = ['1', '3'])

This will mark choices 1 and 3 as selected.


Edit: Default values are apparently processed (copied into the data member) when the form is instatiated, so changing the default afterwards won't have any effect, unless you manually call process() on the field. You could set the data -member, like so:

form.myfield.data = ['1', '3']

But I'm not sure if either of them is a good practice.


Edit: In case you want to actually set the data and not the default, you should probably use the form to load the data.

Form objects take formdata as the first argument and use that to automatically populate field values. (You are supposed to use a dictionary wrapper with a getlist -method for that)

You can also use keyword arguments to set the data when creating the form, like this:

form = MyForm(myfield = ['1', '3'])


This is what worked for me on a SelectField:

form.myfield.default = '1'form.process()

I'm guessing you can just assign a list to form.myfield.default for a SelectMultipleField. The key, though, seems to be calling the process method on the form after you assign to default.


This is what worked for me (with a dynamic multi select field):

form  = MyForm(request.form, obj=my_obj)form.tags.choices = [('1', 'abc'), ('2', 'def')]form.tags.default = ['1', '2']form.tags.process(request.form)

If I just call form.process(), it loses the default values for the other fields in my form.