In the playground, the following code will also cause this issue:
(never mind the textfield as a button label, that's horrible practice)

Select the last tab, there should be two text boxes.  Tab between them
and then it causes a exception.

I wonder if this is related to:
http://bugzilla.qooxdoo.org/show_bug.cgi?id=2713 which has the same
error, but via a different route.

var button1 = new qx.ui.form.TextField("First Button");
var button2 = new qx.ui.form.TextField("second Button");
var button3 = new qx.ui.form.TextField("third Button");
var button4 = new qx.ui.form.TextField("fourth Button");
var tabView = new qx.ui.tabview.TabView();
var tab1 = new qx.ui.tabview.Page("sdfkj");
tab1.setLayout(new qx.ui.layout.Grow());
tab1.add(button3);
tabView.add(tab1);
var tab2 = new qx.ui.tabview.Page("sdfkj2");
tab2.setLayout(new qx.ui.layout.Grow());
tab2.add(button4);
tabView.add(tab2);
tabView.add(new qx.ui.tabview.Page("sdfkj3"));
var doc = this.getRoot();
doc.add(tabView);
var tabView2 = new qx.ui.tabview.TabView();
var pane2 = new qx.ui.tabview.Page("sdfkj4");
pane2.setLayout(new qx.ui.layout.VBox());
pane2.add(button1);
pane2.add(button2);
tabView2.add(pane2);
var pg = new qx.ui.tabview.Page("test");
pg.setLayout(new qx.ui.layout.Grow());
pg.add(tabView2);
tabView2.add(new qx.ui.tabview.Page("sdfkj3"));
tabView2.add(new qx.ui.tabview.Page("sdfkj3"));
tabView2.add(new qx.ui.tabview.Page("sdfkj3"));
tabView.add(pg); 

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to