@app.callback ([Output(component_id='knob',component_property='value'),
Output(component_id='knob',component_property='disabled')]
[Input(component_id='boolean_switch',component_property='on'),])
def update(signal):
if signal:
return [0,False]
else:
return [5,True]
Hi,
When I update the knob via call back function, I am able to obtain new values, but as you can see from the image, the button doesn’t follow the value. The button of the knob always stays on the position where it was selected with mouse. How could i set it up, it would follow the value on update? I have set persistence to False, if this helps in anyway, but I am not sure it does, as well I haven’t noticted any property for this button in documention.