unfoldadmin / django-unfold

Modern Django admin theme for seamless interface development
https://unfoldadmin.com
MIT License
1.03k stars 96 forks source link

ManytoManyfield Widget Bug #332

Closed lamchun1110 closed 1 month ago

lamchun1110 commented 1 month ago

I'm new to django unfold and I'm doing some research that unfold seems to have default autocomplete but I don't know how to implement it. Since the default seems to bug with unfold. image There is no scrollbar and no autocomplete.

I need to integrate the widget from django-select2 to come over this problem. image

justinqian42 commented 1 month ago

@admin.register(YourModel) class YourModelAdmin(ModelAdmin):

autocomplete_fields = [
    "your_field",
]