I am finding a crash when including a daq.Slider in a children of a callback, i am getting an unresponsive element with the following error:
The sample code that I tested is the following…
daq.Slider(
id = 'test_slider',
min=0,
max=100,
updatemode = 'mouseup',
value=50,
handleLabel={"showCurrentValue": True,"label": "VALUE"},
step=10
),
html.Div(id = 'test_slider_response'),
With a callback …
@app.callback(
Output("test_slider_response", "children"),
[Input("test_slider", "value"),
],
)
def test_slider_response_function(value):
return html.H1(str(value))
If I declare the Slider upfront in the page runs OK (Just that I anted to be intentional through a triggered callback)
Is it a normal behaviour of a daq.Slider?