Answer the question
In order to leave comments, you need to log in
Django how to combine select and TextInput?
Good day! Relatively recently, I started learning Django and now I ran into a problem that I can’t solve in any way.
I have a formset associated with a model.
The form itself:
class typeblockcompform(forms.ModelForm):
class Meta:
model = Тип_блока_компонент
fields = ('id', 'Тип_блока', 'Компонент')
widgets = {
'Тип_блока': forms.widgets.HiddenInput(),
}
blockcompformset = modelformset_factory(Тип_блока_компонент, form=typeblockcompform, can_delete=True)
Answer the question
In order to leave comments, you need to log in
Use custom widget in template like https://selectize.github.io/selectize.js/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question