我的组合框实例是在全球范围内创建的,它被填充,比如说一个公司列表,而值是一个 ID。加载文件后,我想检查组合框中是否有该值,然后以编程方式选择它。
class cComboBoxFun extends UI implements ClickListener
{
ComboBox cb_company;
List<cCustomer> ListCust;
//default constructor and server conf not really relevant
@Override
protected void init(VaadinRequest request)
{
//Lets assume the list has been filled already
cb_company = new ComboBox("Company");
for(cCustomer cust : ListCust)
{
cb_company.addItem(cust.mgetId);
cb_company.setItemcaption(cust.mgetId, cust.mgetName);
}
}
class cCustomer()
{
private String name;
private String Id;
public String GetName()
{
return this.name
}
// Same for id
}
我尝试检查该值是否存在并进行设置,但没有任何反应。我抬头却找不到答案
if(cb_company.getItemCaption(value) != null)
cb_company.set(value);