Choices can be set using form.myfield.choices=[("1","Choice1"), ("2","Choice2")]
What is the way to set the selected option?
|
feedback
|
|
You can use the
This will mark choices 1 and 3 as selected. Edit: Default values are apparently processed (copied into the
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.
You can also use keyword arguments to set the data when creating the form, like this:
| |||||||||||
feedback
|
|
This is what worked for me on a SelectField:
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. | |||
|
feedback
|