3

我的组合框实例是在全球范围内创建的,它被填充,比如说一个公司列表,而值是一个 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);
4

1 回答 1

9

假设您ComboBox使用单选模式,您可以使用编程方式选择给定项目

cb_company.select(value)

value指向哪里cCustomer.Id。所以代码可能如下所示:

cb_company = new ComboBox("Company");

for(cCustomer cust : ListCust)
{
    cb_company.addItem(cust.mgetId);
    cb_company.setItemcaption(cust.mgetId, cuts.mgetName);
}

//select the first item from the container
cb_company.select(ListCust.get(0));
于 2013-10-11T13:05:35.320 回答