This feature is described originally in a Stack Overflow question, where it was recommended to create a GitHub issue.
Current functionality of the on_change method of a bokeh TextInput object is to run the callback after all text is typed and then some other key is pressed. I want to know if a TextInput object can be configured to run a callback as text is being typed / deleted. The following code is a minimal example. The application created by the code demonstrates the issue.
from bokeh.io import curdoc
from bokeh.layouts import widgetbox, column
from bokeh.models import TextInput, Button
button = Button(button_type='success')
ti = TextInput(title='enter text to enable button')
layout = column(
widgetbox(ti),
widgetbox(button))
button.disabled = True
def callback(attr, old, new):
if ti.value != '':
button.disabled = False
else:
button.disabled = True
ti.on_change('value', callback)
curdoc().add_root(layout)
This feature is described originally in a Stack Overflow question, where it was recommended to create a GitHub issue.
Current functionality of the on_change method of a bokeh TextInput object is to run the callback after all text is typed and then some other key is pressed. I want to know if a TextInput object can be configured to run a callback as text is being typed / deleted. The following code is a minimal example. The application created by the code demonstrates the issue.