##// END OF EJS Templates
Renamed widget python classes to avoid name stomping
Renamed widget python classes to avoid name stomping

File last commit:

r14267:bcc71453
r14267:bcc71453
Show More
widget_string.py
10 lines | 328 B | text/x-python | PythonLexer
from base import Widget
from IPython.utils.traitlets import Unicode, Bool, List
class StringWidget(Widget):
target_name = Unicode('StringWidgetModel')
default_view_name = Unicode('TextboxView')
_keys = ['value', 'disabled']
value = Unicode()
disabled = Bool(False) # Enable or disable user changes