Closed GoogleCodeExporter closed 8 years ago
Do not post questions here, this tracker is for confirmed issues. Post
questions to the SmartGWT Forums (forums.smartclient.com) and read the FAQ
first.
Original comment by smartgwt...@gmail.com
on 3 Aug 2011 at 5:54
i have the same issue , and dont find any thing about it i forums ???
Original comment by Arkan.D...@exalt.ps
on 24 Jan 2012 at 12:41
//resolved by adding tab in following way to TabSet
private Tab getTab(String tabName, Widget widget, boolean closable) {
Tab tab = new Tab(tabName);
tab.setCanClose(closable);
WidgetCanvas lay1 = new WidgetCanvas(widget);
//for Ctrl+c and Ctrl+v
lay1.setCanSelectText(true);
//to hide right click menu
lay1.addShowContextMenuHandler(new ShowContextMenuHandler() {
@Override
public void onShowContextMenu(ShowContextMenuEvent event) {
event.cancel();
}
});
tab.setPane(lay1);
TabSet tset=new TabSet();
tset.add(tab);
}
Original comment by kvenu.j...@gmail.com
on 13 Feb 2012 at 5:45
This is not a runnable test case, issue still invalid. See also FAQ (in
forums) about mixing GWT and SmartGWT widgets.
Original comment by smartgwt...@gmail.com
on 13 Feb 2012 at 6:09
Original issue reported on code.google.com by
kvenu.j...@gmail.com
on 3 Aug 2011 at 5:52