Open
Description
From @dakoop on June 28, 2018 20:8
After playing around with ipywidgets, I have some thoughts on making them work with dfkernel.
- Widgets should be shown with labels like other outputs (need to redo the widget-specific output area stuff to show the tag), not sure if having them be
execute_result
s ordisplay_data
s is a big deal - A widget's value should be referenced just using the the name of that widget,
x
notx.value
as is currently done. Any needs for things like links, jslinks, etc. can be done with some type of widget() call or something. - Every widget should have an observer that triggers execution if necessary. Users should also be able to use an
interact_manual
analog so that execution is only triggered when a button is clicked - Downstream use of a widget's value is then as simple as
y = x + 4
Copied from original issue: colinjbrown/dfkernel#42