Forums

Dash dropdown not showing values

Hi everyone,

I have a Python Web App built with Dash working fine in my local machine, but the same code here in python anywhere there is a dropdown menu that is not showing the options...or showing blank values.. I´ve tried hard coding some values in the options dropdown variable, but nothing appears..

The code is like this:

dcc.Dropdown(
    id="dd_units",
    options=['SORXC01', 'ENDE01'],
    value="SORXC01",
    searchable=False,),

Anyone can help me??

Here the link of the img of the dropdown:

https://imgur.com/BsKPfVd

Dropdown_issue

What do you see in dev tools of your browser? Is everything loaded?

The problem was the dash version installed in the server

pip install --upgrade dash

And now its working perfect :)

Grand! Thanks for letting us know.