Creating it raises the error:
My layout:
app.layout = html.Div([
dcc.Input(id='my-id', value='initial value', type='text'),
html.Div(id='my-div'),
dcc.Input(type="datetime-local",
id="SelectionFrom",
),
])
What i have to do to make it work?
I mean, clearly it is now not listed in “supported-behaviour” list. Will it ever be?
Having the same exact problem as you. Frustrating since it seemed to be working perfectly fine before.
Found a workaround in this theme.
Hi turns out that native html types are still supported, but the error is coming from
dev_tools_props_check.
Works perfectly when I set
app.enable_dev_tools(debug=True, dev_tools_props_check=False)
or if I don’t enable devtools at all
(I’m running dash 1.0.2)
mjspeck
January 23, 2021, 11:37pm
5
Are there any updates other than this workaround? This seems like such an obvious feature to have, it’s weird that datetime-local wouldn’t be supported anymore.