31dadafde4e9f612f7a63a6ac574250f8f05266e,sphinx/source/docs/user_guide/examples/interaction_textinput.py,,,#,4

Before Change

from bokeh.io import output_file, show
from bokeh.models import TextInput

output_file("text_input.html")

text_input = TextInput(value="default", title="Label:")

show(text_input)

After Change


from bokeh.models import CustomJS, TextInput

text_input = TextInput(value="default", title="Label:")
text_input.js_on_change("value", CustomJS(code=
    console.log("text_input: value=" + this.value, this.toString())
))

show(text_input)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 5

Non-data size: 3

Instances


Project Name: bokeh/bokeh
Commit Name: 31dadafde4e9f612f7a63a6ac574250f8f05266e
Time: 2020-08-18
Author: bryan@bokeh.org
File Name: sphinx/source/docs/user_guide/examples/interaction_textinput.py
Class Name:
Method Name:


Project Name: bokeh/bokeh
Commit Name: 31dadafde4e9f612f7a63a6ac574250f8f05266e
Time: 2020-08-18
Author: bryan@bokeh.org
File Name: sphinx/source/docs/user_guide/examples/interaction_slider.py
Class Name:
Method Name:


Project Name: bokeh/bokeh
Commit Name: 31dadafde4e9f612f7a63a6ac574250f8f05266e
Time: 2020-08-18
Author: bryan@bokeh.org
File Name: sphinx/source/docs/user_guide/examples/interaction_textareainput.py
Class Name:
Method Name:


Project Name: bokeh/bokeh
Commit Name: 31dadafde4e9f612f7a63a6ac574250f8f05266e
Time: 2020-08-18
Author: bryan@bokeh.org
File Name: sphinx/source/docs/user_guide/examples/interaction_multiselect.py
Class Name:
Method Name:


Project Name: bokeh/bokeh
Commit Name: 31dadafde4e9f612f7a63a6ac574250f8f05266e
Time: 2020-08-18
Author: bryan@bokeh.org
File Name: sphinx/source/docs/user_guide/examples/interaction_select.py
Class Name:
Method Name: