mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-06 11:35:24 +08:00
commit
2810bcd17a
@ -292,6 +292,13 @@ class Widget(LoggingConfigurable):
|
||||
True if the callback should be unregistered."""
|
||||
self._display_callbacks.register_callback(callback, remove=remove)
|
||||
|
||||
def add_trait(self, traitname, trait):
|
||||
"""Dynamically add a trait attribute to the Widget."""
|
||||
super(Widget, self).add_trait(traitname, trait)
|
||||
if trait.get_metadata('sync'):
|
||||
self.keys.append(traitname)
|
||||
self.send_state(traitname)
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# Support methods
|
||||
#-------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user