Open michaelsweeney opened 5 years ago
I had the same problem, so I decided to try the source rather than the PYPI package. The following works for me:
git clone https://github.com/vivekvs1/dash-dual-listbox.git
cd dash-dual-listbox
git checkout 9067f3d93a022c00155bc68b7bdc55c7ab530097
npm install
npm run build:js
npm run build:py
gedit usage.py # uncomment callback as in your code above
mkdir assets
mv dash_dual_listbox/style.css assets
python usage.py
I also had the same problem.
For those who might be struggling with getting callbacks to work when the package was installed via pip, I can confirm that rebuilding the package as @vtslab described above fixes the issue.
Thanks for this @vtslab!
I'm using the "Usage.py" example code (with comments removed and "Display" Div added) and the Dual Listbox is shown, but I can't get the callback to fire. Is this example current?