Fullscreen IPython Notebook dashboards

Because of the liberal use of window.document calls throughout IPython notebook calls, using window.open and trying to draw widgets into them is basically impossible.

Thus, to achieve a presentation/presenter view (or man-behind-the curtain) of data driven widgets, a slightly more tortuous approach is needed


In [1]:
from ipywidgets import widgets as W
import traitlets as T
from IPython.display import display as show

from ipylayoutwidgets import widgets as DW

In [2]:
full = DW.FullscreenBox()

In [3]:
full

In [4]:
full.children = [W.Button(description="Click Me!")]