I have a label widget and im trying to add this widget to the multiple cells in the flex table but the widget is appearing only in the first cell. Is it possible to reuse a widget in gwt?? how?
Label l1=new Label("USER") ;
tweetFlexTable.setWidget(0,0,l1);
tweetFlexTable.setWidget(0,1,l1);
Every widget can only have one parent.
So you have to create as many widgets as you have cells, like this: