9

我已经定义了一个ComboBox允许用户从他的联系人列表中选择一个联系人。ComboBox 显示联系人姓名,但不能真正用于映射到真实联系人:需要联系人 ID。我的问题是我不知道如何Vaadin ComboBox用链接的值和 ID 填充,而只显示值。

// Add all organization contacts to the drop-down
for (Contact contact : organizationContacts) {
    contactName = contact.getName();
    contactId   = contact.getId();
    _logger.debug("Adding contactName=" + contactName + " contactId=" + contactId + " to person with id=" + personId);
    contactNameCombo.addItem(contactName);
}

// Add the contact of this person, and select it in the drop-down
contactName = person.getContact().getName();
contactId   = person.getContact().getId();
contactNameCombo.addItem(contactName);
contactNameCombo.setValue(contactName);

正如您在上面的代码中看到的,我正在将 添加contactNameComboBox,但我不知道如何添加 ,contactId以便稍后我可以从所选条目中知道必须使用哪个 ID 来更新数据库。

4

4 回答 4

11

有几种方法可以解决这个问题:这里最灵活的是配置组合框以使用命名属性作为标题。 有关更多详细信息,请参阅 关于选择项目的 Vaadin 书。

// Set the caption mode to read the caption directly
// from the 'name' property of the item
contactNameCombo.setItemCaptionMode(Select.ITEM_CAPTION_MODE_PROPERTY);
contactNameCombo.setItemCaptionPropertyId("name");

// Add all organization contacts to the drop-down
for (Contact contact : organizationContacts) {
    contactName = contact.getName();
    contactId   = contact.getId();
    _logger.debug("Adding contactName=" + contactName + " contactId=" + contactId + " to person with id=" + personId);

    // Note : the itemId of the item is the contactId
    Item item = contactNameCombo.addItem(contactId);
    item.getProperty("name").setValue(contactName)
}
// Add the contact of this person, and select it in the drop-down
contactName = person.getContact().getName();
contactId   = person.getContact().getId();
Item item = contactNameCombo.addItem(contactId);
item.getProperty("name").setValue(contactName)

// Using the itemId (which = contactId) to select the given contact
contactNameCombo.setValue(contactId);
于 2012-05-30T08:15:06.463 回答
10

@Charles Anthony 给出的解决方案也对我不起作用。在 Vaadin 文档(https://vaadin.com/book/-/page/components.selecting.html)中,我找到了以下代码:

// Set item caption for this item explicitly
select.addItem(2); // same as "new Integer(2)"
select.setItemCaption(2, "Deimos");

这对我有用。

于 2013-02-25T12:55:53.080 回答
4

瓦丁 7:

    statusSelectCombo.setItemCaptionMode(ItemCaptionMode.PROPERTY);
statusSelectCombo.setItemCaptionPropertyId("courseOptionValue");

   IndexedContainer iContainer = new IndexedContainer();
   iContainer.addContainerProperty("courseId", String.class, "");
   iContainer.addContainerProperty("courseOptionValue", String.class, "");
    String addItemId="";
    String addItemCaption="";
for (int i = 0; i < comboItemsArray.length; i++) //String[] comboItemsArray
{
    log.debug("comboItemsArray["+i+"] "+comboItemsArray[i]);
    addItemId= comboItemsArray[i];
    addItemCaption=comboItemsArray[i];
   Item newItem = iContainer.getItem(iContainer.addItem());
   newItem.getItemProperty("courseId").setValue(addItemId);
   newItem.getItemProperty("courseOptionValue").setValue(addItemId);
}
statusSelectCombo.setContainerDataSource(iContainer);

ValueChangeListener listener = new Property.ValueChangeListener()
{
    public void valueChange(ValueChangeEvent event)
    {
    statusSelectCombo.getItemIds();
    Property changedProperty = event.getProperty();
    Object selectedStatus = (Object) statusSelectCombo.getValue(); //it is get Value but gives object ID as an Object
    Item rowItem = statusSelectCombo.getItem(selectedStatus);
    final String selectedCourseId = (String) rowItem.getItemProperty("courseId").getValue();        

    }
};
于 2014-06-17T11:52:24.963 回答
2

查尔斯安东尼是绝对正确的。

您还可以利用诸如 BeanContainer 或 BeanItemContainer 之类的容器(例如,在此处了解更多信息)将您的联系人对象添加到您的 ComboBox。你需要填满你的容器并添加它

contactNameCombo.setContainerDataSource(YOUR_CONTAINER);

到您的组合框。

于 2012-05-30T10:15:20.753 回答