Test widget overlap

Make sure that the dropdown appears on top of the table both in notebook mode and dashboard mode.


In [1]:
from ipywidgets import interact
from IPython.display import display
import pandas as pd
import numpy as np

In [2]:
@interact(count=['5','10','15'])
def render(count):
    count = int(count)
    data = np.random.randn(count, count)
    display(pd.DataFrame(data))