Bokeh textinput not editable

Hello all,
I have the following question.
Imagine a widgetbox:
name_input = TextInput(placeholder=“Name”, value="")
email_input = TextInput(placeholder=“Email”, value="")
w1 = widgetbox(name_input,email_input, sizing_mode=‘scale_both’)

When this widgetbox is returned and embedded into the popup-window, textbox controls are not editable. Anybody have any idea why ?

widgetbox is deprecated - you should use column instead.

As to your question, it’s unclear. Bokeh doesn’t have any popup windows, so it all depends on your implementation. If you provide a minimal reproducible example, then someone could take a look.