Skip to content
Advertisement

Dash dcc.Dropdown issue with clear all

So, I have this very simplified Dash app example. Code is below:

JavaScript

User can select multiple options and they will appear on the chart but when the user chose to clear all (x on the right side) it shows this error:

JavaScript

Does anyone have a suggestion on how to fix this? Also, If possible I would like to return to the initial state of the chart when clear all is selected.

Thanks in advance.

Advertisement

Answer

The remove the error, you need to handle the case where fruits is an empty list. It could be as simple as replacing the

JavaScript

condition by

JavaScript

Since not fruits evaluates to True when the fruits variable is an empty list and your initial state was 'All Fruits', this simple change should yield the desired outcome.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement