-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
It seems that value with dictionary causes only one option to appear:
dcc.Checklist(
id="account-ad-options",
options=[
{'label': 'Optimization', 'value': {"optimization": True}},
{'label': 'Reports', 'value': {"reports": True}}
],
values=[]
),
dcc.Checklist(
id="account-ad-options",
options=[
{'label': 'Optimization', 'value': 'optimization'},
{'label': 'Reports', 'value': 'reports'}
],
values=[]
),
Dictionary as values could be pretty handy to control inputs going inside a function with ChainMap and passing the dictionary as variables into a function with ** (two star).
Metadata
Metadata
Assignees
Labels
No labels