Skip to content Skip to sidebar Skip to footer

Django Smart Select Not Working

I have imported django smart select and have a model named Request in which field assigned_to and approval_by should have dynamic choices.There are no errors from makemigrations or

Solution 1:

Its because of the branch master, I think it doesn't have stable code. I tried with js-unlinting-fixes branch and it worked.

just do following and it will start working

pip uninstall django-smart-selects
pip install  git+https://github.com/digi604/django-smart-selects.git@js-unlinting-fixes

Happy coding...


Post a Comment for "Django Smart Select Not Working"