I have created a TabPanel in GWT and add tabs
Now I want to get the selected tab so that if a user clicks on a close button, I can close that selected tab.
Here is my tabpanel code:
TabPanel tabPanelCvs =new TabPanel();
tabPanelCvs.setVisible(true);
tabPanelCvs.setSize("900","800");
VerticalPanel vpnlCvsTab = new VerticalPanel();
tabPanelCvs.add(vpnlCvsTab,result.getResumeTitle());
Any idea how can I get the selected tab of my TabPanel?
For getting selected tab of
TabPanelthere is method:TabBar#getSelectedTab()