You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
does not actually assign the slider object into w_model (instead it assigns a Column, which contains both the slider, its label and spinner widget). Then a few lines later, this fails
ALL software version info
Panel: 1.3.8
Python: 3.10.12
OS: Linux
Description of expected behavior and the observed behavior
Calling
.embed()
on a layout containing either aEditableFloatSlider
orEditableIntSlider
raises anAttributeError
.In both cases, the code ends up in
ContinuousSlider._get_embed_state
, but this linepanel/panel/widgets/slider.py
Line 122 in ebe8d66
does not actually assign the slider object into
w_model
(instead it assigns aColumn
, which contains both the slider, its label and spinner widget). Then a few lines later, this failspanel/panel/widgets/slider.py
Line 126 in ebe8d66
because since
w_model
is aColumn
, it has nostart
attribute.Complete, minimal, self-contained example code that reproduces the issue
The error also occurs with
EditableIntSlider
.It does not occur with
EditableRangeSlider
,IntSlider
orFloatSlider
.Stack traceback and/or browser JavaScript console output
The text was updated successfully, but these errors were encountered: