Get the chosen values from FilteredSelectMultiple widget in Django
问题 In Django admin , does anyone know how can i get the chosen values from FilteredSelectMultiple widget in, when the form is saved? class ControllerForm(forms.ModelForm): terminal = forms.ModelMultipleChoiceField(queryset=[]) def __init__(self, *args, **kwargs): super(ControllerForm, self).__init__(*args, **kwargs) self.fields['terminal'].widget = widgets.FilteredSelectMultiple('terminals', False) self.fields['terminal'].help_text = "Select the terminals which are to be added to the group."