GWT本地简单的下拉框

com.extjs.gxt.ui.client.widget.form.SimpleComboBox

 

        SimpleComboBox<String> cboUsed = new SimpleComboBox<String>();
        cboUsed.setFieldLabel("使用情况");
        cboUsed.setEditable(false);
        cboUsed.add("未使用");
        cboUsed.add("使用");
        cboUsed.setSimpleValue("未使用");
 

 

你可能感兴趣的:(UI,gwt)