我已定义ComboBox
,允许用户从其联系人列表中选择联系人。 ComboBox显示联系人姓名,但实际上无法用于映射到真实联系人:需要联系人ID。我的问题是我不知道如何使用链接的值和ID填充Vaadin
ComboBox
,但只显示值。
// 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);
正如您在上面的代码中看到的那样,我将contactName
添加到ComboBox
,但我不知道如何添加contactId
以便稍后我知道,从所选条目中,必须使用哪个ID来更新数据库。
答案 0 :(得分:11)
有几种方法可以解决这个问题:这里最灵活的方法是将组合框配置为使用命名属性作为标题。 有关详细信息,请参阅Book Of Vaadin on Selecting Items。
// 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);
答案 1 :(得分:10)
@Charles Anthony给出的解决方案对我来说也不起作用,但是在vadin网页(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");
对我有用。
答案 2 :(得分:4)
Vaadin 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();
}
};
答案 3 :(得分:2)
您还可以利用BeanContainer或BeanItemContainer之类的容器(更多信息here)将您的联系对象添加到ComboBox。 您需要填写容器并添加
contactNameCombo.setContainerDataSource(YOUR_CONTAINER);
到您的ComboBox。