Search code examples
javagwtgxt

How to select a column in tabPanel with gxt3?


Please, i like to know how to setselection a column in a TabPanel with GXT3.
In Gxt2 there is the method setSelection(TabItem).


Solution

  • Have you tried:

    myTabPanel.setActiveWidget(myWidget)
    

    where myWidget is the widget you have added to the TabPanel.

    This works in GXT 4 and should work in GXT 3.