Tell me how to organize multiple data selection in your own input field? By the way this is done by default:
I’m trying to use Select2TagsField, but I don’t understand how to fill it with data, when I try to select, it displays No matches found :
class CustomModelView(ModelView): form_columns = ('things_list',) form_extra_fields = { 'things_list': Select2TagsField( 'Things', data=['asdfasdf','asfdasdfasfasfd'], coerce=int ), } Result:
Tried to fasten a related decision , but in this case it does not display anything at all: 

