We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I didn't find examples in tests which set select2 options.
class FooSelect2Field(django_select2.AutoModelSelect2Field): queryset = Foo.objects search_fields = ['name__icontains, ] station = StationSelect2Field(widget=django_select2.AutoHeavySelect2Widget(select2_options={ 'width': '32em', 'placeHolder': _(u"Search foo") })
will raise an error about missing view so I need to add data_view='django_select2_central_json' to widget init.
The text was updated successfully, but these errors were encountered:
@stephane Please check the latest code in master branch.
Sorry, something went wrong.
OK data_view is not required anymore so now I can report a bug for ignored select options!
No branches or pull requests
I didn't find examples in tests which set select2 options.
will raise an error about missing view so I need to add data_view='django_select2_central_json' to widget init.
The text was updated successfully, but these errors were encountered: