5

我有一个装满容器数据源的 vaadin 组合框

setContainerDataSource(container);

我现在想在结果列表的某处插入一个静态文本。


例如:

一个 Combobox 填充了 的容器,结果列表中弹出的第一个条目是某种标题:

人员:
Thomas S.
Lucas B.
Alex X.

我可以通过操作容器或组合框来实现吗?

我只是尝试设置容器源并通过 addItem() 将字符串/标签添加到 ComboBox,但这似乎不起作用。我对此有点陌生,所以我不知道如何继续。

4

3 回答 3

6

如果您将 ComboBox 用作即时并且不希望将“Person:”作为真人处理,则可以使用setNullSelectionItemId将假人定义为真正的虚拟对象。但是,此解决方案有一个限制,即您只能添加一个虚拟对象。

这是我的示例,它在列表顶部添加“Person:”并将其作为空值处理。请注意,我使用的是 Vaadin 7。

import com.vaadin.data.Property;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.util.BeanItemContainer;
import com.vaadin.server.VaadinRequest;
import com.vaadin.ui.AbstractSelect;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.Notification;
import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout;

/**
 * The Application's "main" class
 */
@SuppressWarnings("serial")
public class MyVaadinUI extends UI {

    @Override
    protected void init(VaadinRequest request) {
        final VerticalLayout layout = new VerticalLayout();
        layout.setMargin(true);
        setContent(layout);

        BeanItemContainer<Person> container = new BeanItemContainer<Person>(Person.class);
        Person nullPerson = new Person(0, "Person:");
        container.addBean(nullPerson);
        container.addBean(new Person(1, "Django"));
        container.addBean(new Person(2, "Schultz"));

        ComboBox combobox = new ComboBox();
        combobox.setImmediate(true);
        combobox.setNullSelectionItemId(nullPerson); // Define the null person as a dummy.
        combobox.setContainerDataSource(container);
        combobox.setItemCaptionMode(AbstractSelect.ItemCaptionMode.PROPERTY);
        combobox.setItemCaptionPropertyId("name");  // the person's name field will be shown on the UI
        combobox.addValueChangeListener(new Property.ValueChangeListener() {
            @Override
            public void valueChange(ValueChangeEvent event) {
                // Will display 'null selected' when nullPerson is selected.
                Notification.show(event.getProperty().getValue() + " selected");
            }
        });

        layout.addComponent(combobox);
    }
}
于 2013-02-20T19:32:36.183 回答
2

如果您的代码与此类似:

BeanItemContainer<Person> container = new BeanItemContainer<Person>(Person.class);
container.addAll(myPersonList);
ComboBox combobox = new ComboBox();
combobox.setContainerDataSource(container);
combobox.setItemCaptionMode(Select.ITEM_CAPTION_MODE_PROPERTY);
combobox.setItemCaptionPropertyId("name");  // the person's name field will be shown on the UI

// imho if you want to add a static text (String) into a container
// which populated with Person objects then you have to make a fake Person object
Person staticText = new Person();
staticText.setName("My static text");
combobox.addItem(staticText);
// if you want to specify the index of the item, add them one by one in for cycle
// and insert the static text item in the appropritate place
于 2013-02-16T11:35:25.320 回答
0

您应该在容器中进行更改(例如:添加项目...)并在组合框上再次调用 setContainerDataSource(container) (以便将其传播到客户端)。

于 2013-02-15T14:05:10.117 回答