You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
…7691)
* #7461 fix for displaying EasyForm in OutputContainer for JVM kernels
* #7461 introducing WidgetItem interface for handling display on output container items
TableDisplay t = new TableDisplay(table);
def l = new TabbedOutputContainerLayoutManager()
l.setBorderDisplayed(false)
def o = new OutputContainer()
o.setLayoutManager(l)
o.addItem(plot1, "Scatter with History")
o.addItem(plot2, "Short Term")
o.addItem(plot3, "Long Term")
o.addItem(t, "1990/01")
f = new EasyForm("Test Form")
f.addTextField("sometext")
f
o.addItem(f, "easyform")
o
this should make a form, not a table:
The text was updated successfully, but these errors were encountered: