Choices can be set using form.myfield.choices=[(\"1\",\"Choice1\"), (\"2\",\"Choice2\")]
What is the way to set the selected option?
Cheers guys for your help. I tried the last answer and it did not work for me. With a call to the process method it works and what you can do is just use it and pass to its data argument the data you don't want to be reset. So something like this:
form.process(data={k: v for k, v in request.form.items() if
k=='your_form_item_name'})