在 Vaadin 中,假设我必须根据其名称在 TabSheet 中找到一个 Tab。

如何遍历 Tabsheet 中的 Tabs 以完成此操作?

最佳答案

您可以通过以下方式迭代选项卡并通过选项卡标题找到它们:

Iterator<Component> i = tabs.getComponentIterator();
while (i.hasNext()) {
    Component c = (Component) i.next();
    Tab tab = tabs.getTab(c);
    if ("some_caption".equals(tab.getCaption())) {
         // found it
    }
}

关于java - Vaadin:如何遍历 TabSheet 中的选项卡?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6275772/

10-09 03:20