I am implementing tabs. I have five tabs. For each tab i am calling screen in following way. In displayTab1() function i am calling another class, It is easily loading MyScreen class but problem is for first time it is showing me same fields two times and whenever i click on this tab same fields are added continously. I have used delete(tabArea);
public VerticalFieldManager displayTab1()
{ MyScreen loadingScreen = new MyScreen();
tab1Manager.add(loadingScreen);
return tab1Manager;
}
Please let me know where i am doing wrong
Thanks