Closed GoogleCodeExporter closed 9 years ago
Upon reading the source code, it's clear why this doesn't work:
public void add(Widget w, String tabText, boolean asHTML) {
assert (w != null);
tabBar.addTab(tabText, asHTML);
final LayoutPanel panel = new LayoutPanel();
panel.add(w);
deck.add(panel);
}
...
Since you wrap the widget in a LayoutPanel, it makes it impossible to reference
the index position with the
original widget.
Original comment by bro...@gmail.com
on 13 Jan 2009 at 11:59
Hi,
that issue is fixed.
http://code.google.com/p/gwt-mosaic/source/detail?r=519
Thanks,
George.
Original comment by georgopo...@gmail.com
on 14 Jan 2009 at 1:33
Original issue reported on code.google.com by
bro...@gmail.com
on 13 Jan 2009 at 11:57