List of usage examples for com.vaadin.ui ComboBox ComboBox
public ComboBox()
From source file:com.cms.component.MappingCombobox.java
public MappingCombobox() { layout.setImmediate(true);/* www.j av a 2 s .c om*/ layout.setWidth("100%"); layout.setHeight("-1px"); codeCombo = new ComboBox(); nameCombo = new ComboBox(); codeCombo.setWidth("100%"); nameCombo.setWidth("100%"); codeCombo.setHeight("-1px"); nameCombo.setHeight("-1px"); layout.addComponent(codeCombo, 0, 0); layout.addComponent(nameCombo, 1, 0, 3, 0); }
From source file:com.cms.component.MappingCombobox.java
public MappingCombobox(String codeCaption, String nameCaption) { layout.setImmediate(true);//from w w w.java 2 s. c o m layout.setWidth("100%"); layout.setHeight("-1px"); codeCombo = new ComboBox(); nameCombo = new ComboBox(); codeCombo.setWidth("100%"); nameCombo.setWidth("100%"); codeCombo.setHeight("-1px"); nameCombo.setHeight("-1px"); if (!DataUtil.isStringNullOrEmpty(codeCaption)) { codeCombo.setCaption(codeCaption); nameCombo.setCaption(nameCaption); } layout.addComponent(codeCombo, 0, 0); layout.addComponent(nameCombo, 1, 0, 3, 0); }
From source file:com.cms.component.MappingCombobox.java
public MappingCombobox(int column, int first) { layout = new GridLayout(column, 1); layout.setImmediate(true);/*w w w . j a v a 2s . c o m*/ layout.setWidth("100%"); layout.setHeight("-1px"); codeCombo = new ComboBox(); nameCombo = new ComboBox(); codeCombo.setWidth("100%"); nameCombo.setWidth("100%"); codeCombo.setHeight("-1px"); nameCombo.setHeight("-1px"); if (first >= column) { first = 1; } layout.addComponent(codeCombo, 0, 0, first - 1, 0); layout.addComponent(nameCombo, first, 0, column - 1, 0); }
From source file:com.cms.utils.CommonUtils.java
public static ComboBox buildComboBox(String caption) { ComboBox comboBox = new ComboBox(); comboBox.setCaption(BundleUtils.getString(caption)); comboBox.setFilteringMode(FilteringMode.CONTAINS); comboBox.setWidth("100%"); comboBox.setHeight("-1px"); comboBox.setImmediate(true);//from w w w .j av a 2 s .c om return comboBox; }
From source file:com.cms.utils.CommonUtils.java
public static ComboBox buildComboBox() { ComboBox comboBox = new ComboBox(); comboBox.setFilteringMode(FilteringMode.CONTAINS); comboBox.setWidth("100%"); comboBox.setHeight("-1px"); comboBox.setImmediate(true);//from w w w . ja va 2 s .co m return comboBox; }
From source file:com.cms.view.ContractTemplateListView.java
private void buildSearchLayout() { searchLayout = new GridLayout(); searchLayout.setCaption(MakeURL.makeURLForGrid(BundleUtils.getString("caption.search.info"))); searchLayout.setCaptionAsHtml(true); searchLayout.setImmediate(false);/*www .ja v a2 s. co m*/ searchLayout.setWidth("100.0%"); searchLayout.setHeight("-1px"); searchLayout.setMargin(true); searchLayout.setSpacing(true); searchLayout.setColumns(4); searchLayout.setRows(4); searchLayout.setStyleName("custom-feildset"); lblCode = new Label(); lblCode.setImmediate(false); lblCode.setWidth("100.0%"); lblCode.setHeight("-1px"); lblCode.setValue(BundleUtils.getString("label.ContractTemplateList.code")); searchLayout.addComponent(lblCode, 0, 0); txtCode = new TextField(); txtCode.setImmediate(false); txtCode.setWidth("100.0%"); txtCode.setHeight("-1px"); searchLayout.addComponent(txtCode, 1, 0); lblName = new Label(); lblName.setImmediate(false); lblName.setWidth("100.0%"); lblName.setHeight("-1px"); lblName.setValue(BundleUtils.getString("label.ContractTemplateList.name")); searchLayout.addComponent(lblName, 2, 0); txtName = new TextField(); txtName.setImmediate(false); txtName.setWidth("100.0%"); txtName.setHeight("-1px"); searchLayout.addComponent(txtName, 3, 0); lblPathFile = new Label(); lblPathFile.setImmediate(false); lblPathFile.setWidth("100.0%"); lblPathFile.setHeight("-1px"); lblPathFile.setValue(BundleUtils.getString("label.ContractTemplateList.pathFile")); // searchLayout.addComponent(lblPathFile, 0, 1); txtPathFile = new TextField(); txtPathFile.setImmediate(false); txtPathFile.setWidth("100.0%"); txtPathFile.setHeight("-1px"); // searchLayout.addComponent(txtPathFile, 1, 1); lblCreatedDate = new Label(); lblCreatedDate.setImmediate(false); lblCreatedDate.setWidth("100.0%"); lblCreatedDate.setHeight("-1px"); lblCreatedDate.setValue(BundleUtils.getString("label.ContractTemplateList.createdDate")); // searchLayout.addComponent(lblCreatedDate, 0, 1); popCreatedDate = new PopupDateField(); popCreatedDate.setImmediate(false); popCreatedDate.setWidth("100.0%"); popCreatedDate.setHeight("-1px"); // searchLayout.addComponent(popCreatedDate, 3, 1); lblLastUpdatedDate = new Label(); lblLastUpdatedDate.setImmediate(false); lblLastUpdatedDate.setWidth("100.0%"); lblLastUpdatedDate.setHeight("-1px"); lblLastUpdatedDate.setValue(BundleUtils.getString("label.ContractTemplateList.lastUpdatedDate")); // searchLayout.addComponent(lblLastUpdatedDate, 0, 2); popLastUpdatedDate = new PopupDateField(); popLastUpdatedDate.setImmediate(false); popLastUpdatedDate.setWidth("100.0%"); popLastUpdatedDate.setHeight("-1px"); // searchLayout.addComponent(popLastUpdatedDate, 1, 2); lblService = new Label(); lblService.setImmediate(false); lblService.setWidth("100.0%"); lblService.setHeight("-1px"); lblService.setValue(BundleUtils.getString("label.ContractTemplateList.service")); searchLayout.addComponent(lblService, 0, 1); cboService = new ComboBox(); cboService.setImmediate(false); cboService.setWidth("100.0%"); cboService.setHeight("-1px"); searchLayout.addComponent(cboService, 1, 1); lblProvider = new Label(); lblProvider.setImmediate(false); lblProvider.setWidth("100.0%"); lblProvider.setHeight("-1px"); lblProvider.setValue(BundleUtils.getString("label.ContractTemplateList.provider")); searchLayout.addComponent(lblProvider, 2, 1); cboProvider = new ComboBox(); cboProvider.setImmediate(false); cboProvider.setWidth("100.0%"); cboProvider.setHeight("-1px"); searchLayout.addComponent(cboProvider, 3, 1); lblType = new Label(); lblType.setImmediate(false); lblType.setWidth("100.0%"); lblType.setHeight("-1px"); lblType.setValue(BundleUtils.getString("label.ContractTemplateList.type")); searchLayout.addComponent(lblType, 0, 2); cboType = new ComboBox(); cboType.setImmediate(false); cboType.setWidth("100.0%"); cboType.setHeight("-1px"); searchLayout.addComponent(cboType, 1, 2); lblStatus = new Label(); lblStatus.setImmediate(false); lblStatus.setWidth("100.0%"); lblStatus.setHeight("-1px"); lblStatus.setValue(BundleUtils.getString("label.ContractTemplateList.status")); searchLayout.addComponent(lblStatus, 2, 2); cbxStatus = new ComboBox(); cbxStatus.setImmediate(false); cbxStatus.setWidth("100.0%"); cbxStatus.setHeight("-1px"); searchLayout.addComponent(cbxStatus, 3, 2); }
From source file:com.cms.view.ObjectsView.java
public void buildSearchLayout() { searchLayout = new GridLayout(); searchLayout.setCaption(MakeURL.makeURLForGrid(BundleUtils.getString("caption.search.info"))); searchLayout.setCaptionAsHtml(true); searchLayout.setImmediate(true);//ww w . j a v a 2 s. c o m searchLayout.setWidth("100.0%"); searchLayout.setHeight("-1px"); searchLayout.setMargin(true); searchLayout.setSpacing(true); searchLayout.setColumns(4); searchLayout.setRows(3); searchLayout.setStyleName("custom-feildset"); lblCode = new Label(); lblCode.setImmediate(true); lblCode.setWidth("100.0%"); lblCode.setHeight("-1px"); lblCode.setValue(BundleUtils.getString("label.Objects.code")); searchLayout.addComponent(lblCode, 0, 0); txtCode = new TextField(); txtCode.setImmediate(true); txtCode.setWidth("100.0%"); txtCode.setHeight("-1px"); searchLayout.addComponent(txtCode, 1, 0); lblName = new Label(); lblName.setImmediate(true); lblName.setWidth("100.0%"); lblName.setHeight("-1px"); lblName.setValue(BundleUtils.getString("label.Objects.name")); searchLayout.addComponent(lblName, 2, 0); txtName = new TextField(); txtName.setImmediate(true); txtName.setWidth("100.0%"); txtName.setHeight("-1px"); searchLayout.addComponent(txtName, 3, 0); lblUrl = new Label(); lblUrl.setImmediate(true); lblUrl.setWidth("100.0%"); lblUrl.setHeight("-1px"); lblUrl.setValue(BundleUtils.getString("label.Objects.url")); searchLayout.addComponent(lblUrl, 0, 1); txtUrl = new TextField(); txtUrl.setImmediate(true); txtUrl.setWidth("100.0%"); txtUrl.setHeight("-1px"); searchLayout.addComponent(txtUrl, 1, 1); lblDescription = new Label(); lblDescription.setImmediate(true); lblDescription.setWidth("100.0%"); lblDescription.setHeight("-1px"); lblDescription.setValue(BundleUtils.getString("label.Objects.description")); searchLayout.addComponent(lblDescription, 2, 1); txtDescription = new TextArea(); txtDescription.setImmediate(true); txtDescription.setWidth("100.0%"); txtDescription.setHeight("-1px"); searchLayout.addComponent(txtDescription, 3, 1); lblObjectType = new Label(); lblObjectType.setImmediate(true); lblObjectType.setWidth("100.0%"); lblObjectType.setHeight("-1px"); lblObjectType.setValue(BundleUtils.getString("label.Objects.objectType")); searchLayout.addComponent(lblObjectType, 0, 2); txtObjectType = new TextField(); txtObjectType.setImmediate(true); txtObjectType.setWidth("100.0%"); txtObjectType.setHeight("-1px"); searchLayout.addComponent(txtObjectType, 1, 2); lblStatus = new Label(); lblStatus.setImmediate(true); lblStatus.setWidth("100.0%"); lblStatus.setHeight("-1px"); lblStatus.setValue(BundleUtils.getString("label.Objects.status")); searchLayout.addComponent(lblStatus, 2, 2); cbxStatus = new ComboBox(); cbxStatus.setImmediate(true); cbxStatus.setWidth("100.0%"); cbxStatus.setHeight("-1px"); searchLayout.addComponent(cbxStatus, 3, 2); }
From source file:com.cms.view.PriceInfoView.java
public void buildSearchLayout() { searchLayout = new GridLayout(); searchLayout.setCaption(MakeURL.makeURLForGrid(BundleUtils.getString("caption.search.info"))); searchLayout.setCaptionAsHtml(true); searchLayout.setImmediate(false);/* ww w. j a va2 s .co m*/ searchLayout.setWidth("100.0%"); searchLayout.setHeight("-1px"); searchLayout.setMargin(true); searchLayout.setSpacing(true); searchLayout.setColumns(4); searchLayout.setRows(4); searchLayout.setStyleName("custom-feildset"); lblCode = new Label(); lblCode.setImmediate(false); lblCode.setWidth("100.0%"); lblCode.setHeight("-1px"); lblCode.setValue(BundleUtils.getString("label.PriceInfo.code")); searchLayout.addComponent(lblCode, 0, 0); txtCode = new TextField(); txtCode.setImmediate(false); txtCode.setWidth("100.0%"); txtCode.setHeight("-1px"); searchLayout.addComponent(txtCode, 1, 0); lblName = new Label(); lblName.setImmediate(false); lblName.setWidth("100.0%"); lblName.setHeight("-1px"); lblName.setValue(BundleUtils.getString("label.PriceInfo.name")); searchLayout.addComponent(lblName, 2, 0); txtName = new TextField(); txtName.setImmediate(false); txtName.setWidth("100.0%"); txtName.setHeight("-1px"); searchLayout.addComponent(txtName, 3, 0); lblPrice = new Label(); lblPrice.setImmediate(false); lblPrice.setWidth("100.0%"); lblPrice.setHeight("-1px"); lblPrice.setValue(BundleUtils.getString("label.PriceInfo.price")); searchLayout.addComponent(lblPrice, 0, 1); txtPrice = new TextField(); txtPrice.setImmediate(false); txtPrice.setWidth("100.0%"); txtPrice.setHeight("-1px"); searchLayout.addComponent(txtPrice, 1, 1); lblTokenPrice = new Label(); lblTokenPrice.setImmediate(false); lblTokenPrice.setWidth("100.0%"); lblTokenPrice.setHeight("-1px"); lblTokenPrice.setValue(BundleUtils.getString("label.PriceInfo.tokenPrice")); searchLayout.addComponent(lblTokenPrice, 2, 1); txtTokenPrice = new TextField(); txtTokenPrice.setImmediate(false); txtTokenPrice.setWidth("100.0%"); txtTokenPrice.setHeight("-1px"); searchLayout.addComponent(txtTokenPrice, 3, 1); lblProvider = new Label(); lblProvider.setImmediate(false); lblProvider.setWidth("100.0%"); lblProvider.setHeight("-1px"); lblProvider.setValue(BundleUtils.getString("label.PriceInfo.provider")); searchLayout.addComponent(lblProvider, 0, 2); cbxProvider = new ComboBox(); cbxProvider.setImmediate(false); cbxProvider.setWidth("100.0%"); cbxProvider.setHeight("-1px"); searchLayout.addComponent(cbxProvider, 1, 2); lblType = new Label(); lblType.setImmediate(false); lblType.setWidth("100.0%"); lblType.setHeight("-1px"); lblType.setValue(BundleUtils.getString("label.PriceInfo.type")); searchLayout.addComponent(lblType, 2, 2); cbxType = new ComboBox(); cbxType.setImmediate(false); cbxType.setWidth("100.0%"); cbxType.setHeight("-1px"); searchLayout.addComponent(cbxType, 3, 2); lblStatus = new Label(); lblStatus.setImmediate(false); lblStatus.setWidth("100.0%"); lblStatus.setHeight("-1px"); lblStatus.setValue(BundleUtils.getString("label.PriceInfo.status")); searchLayout.addComponent(lblStatus, 0, 3); cbxStatus = new ComboBox(); cbxStatus.setImmediate(false); cbxStatus.setWidth("100.0%"); cbxStatus.setHeight("-1px"); searchLayout.addComponent(cbxStatus, 1, 3); }
From source file:com.cms.view.ServicesView.java
public void buildSearchLayout() { searchLayout = new GridLayout(); searchLayout.setCaption(MakeURL.makeURLForGrid(BundleUtils.getString("caption.search.info"))); searchLayout.setCaptionAsHtml(true); searchLayout.setImmediate(false);//from w ww. j av a2 s. c o m searchLayout.setWidth("100.0%"); searchLayout.setHeight("-1px"); searchLayout.setMargin(true); searchLayout.setSpacing(true); searchLayout.setColumns(4); searchLayout.setRows(10); searchLayout.setStyleName("custom-feildset"); lblCode = new Label(); lblCode.setImmediate(false); lblCode.setWidth("100.0%"); lblCode.setHeight("-1px"); lblCode.setValue(BundleUtils.getString("label.Services.code")); searchLayout.addComponent(lblCode, 0, 0); txtCode = new TextField(); txtCode.setImmediate(false); txtCode.setWidth("100.0%"); txtCode.setHeight("-1px"); searchLayout.addComponent(txtCode, 1, 0); lblDescription = new Label(); lblDescription.setImmediate(false); lblDescription.setWidth("100.0%"); lblDescription.setHeight("-1px"); lblDescription.setValue(BundleUtils.getString("label.Services.description")); searchLayout.addComponent(lblDescription, 2, 0); txtDescription = new TextArea(); txtDescription.setImmediate(false); txtDescription.setWidth("100.0%"); txtDescription.setHeight("-1px"); searchLayout.addComponent(txtDescription, 3, 0); lblExpiryDate = new Label(); lblExpiryDate.setImmediate(false); lblExpiryDate.setWidth("100.0%"); lblExpiryDate.setHeight("-1px"); lblExpiryDate.setValue(BundleUtils.getString("label.Services.expiryDate")); searchLayout.addComponent(lblExpiryDate, 0, 1); popExpiryDate = new PopupDateField(); popExpiryDate.setImmediate(false); popExpiryDate.setWidth("100.0%"); popExpiryDate.setHeight("-1px"); searchLayout.addComponent(popExpiryDate, 1, 1); lblIssueDate = new Label(); lblIssueDate.setImmediate(false); lblIssueDate.setWidth("100.0%"); lblIssueDate.setHeight("-1px"); lblIssueDate.setValue(BundleUtils.getString("label.Services.issueDate")); searchLayout.addComponent(lblIssueDate, 2, 1); popIssueDate = new PopupDateField(); popIssueDate.setImmediate(false); popIssueDate.setWidth("100.0%"); popIssueDate.setHeight("-1px"); searchLayout.addComponent(popIssueDate, 3, 1); lblName = new Label(); lblName.setImmediate(false); lblName.setWidth("100.0%"); lblName.setHeight("-1px"); lblName.setValue(BundleUtils.getString("label.Services.name")); searchLayout.addComponent(lblName, 0, 2); txtName = new TextField(); txtName.setImmediate(false); txtName.setWidth("100.0%"); txtName.setHeight("-1px"); searchLayout.addComponent(txtName, 1, 2); lblServiceGroup = new Label(); lblServiceGroup.setImmediate(false); lblServiceGroup.setWidth("100.0%"); lblServiceGroup.setHeight("-1px"); lblServiceGroup.setValue(BundleUtils.getString("label.Services.serviceGroup")); searchLayout.addComponent(lblServiceGroup, 2, 2); txtServiceGroup = new TextField(); txtServiceGroup.setImmediate(false); txtServiceGroup.setWidth("100.0%"); txtServiceGroup.setHeight("-1px"); searchLayout.addComponent(txtServiceGroup, 3, 2); lblStatus = new Label(); lblStatus.setImmediate(false); lblStatus.setWidth("100.0%"); lblStatus.setHeight("-1px"); lblStatus.setValue(BundleUtils.getString("label.Services.status")); searchLayout.addComponent(lblStatus, 0, 3); cbxStatus = new ComboBox(); cbxStatus.setImmediate(false); cbxStatus.setWidth("100.0%"); cbxStatus.setHeight("-1px"); searchLayout.addComponent(cbxStatus, 1, 3); lblType = new Label(); lblType.setImmediate(false); lblType.setWidth("100.0%"); lblType.setHeight("-1px"); lblType.setValue(BundleUtils.getString("label.Services.type")); searchLayout.addComponent(lblType, 2, 3); cbxType = new ComboBox(); cbxType.setImmediate(false); cbxType.setWidth("100.0%"); cbxType.setHeight("-1px"); searchLayout.addComponent(cbxType, 3, 3); }
From source file:com.cms.view.TaxAuthorityView.java
public void buildSearchLayout() { searchLayout = new GridLayout(); searchLayout.setCaption(MakeURL.makeURLForGrid(BundleUtils.getString("caption.search.info"))); searchLayout.setCaptionAsHtml(true); searchLayout.setImmediate(true);/*w w w . java 2 s .c om*/ searchLayout.setWidth("100.0%"); searchLayout.setHeight("-1px"); searchLayout.setMargin(true); searchLayout.setSpacing(true); searchLayout.setColumns(4); searchLayout.setRows(3); searchLayout.setStyleName("custom-feildset"); // lblId = new Label(); // lblId.setImmediate(true); // lblId.setWidth("100.0%"); // lblId.setHeight("-1px"); // lblId.setValue(BundleUtils.getString("label.TaxAuthority.id")); // searchLayout.addComponent(lblId, 0, 0); // txtId = new TextField(); // txtId.setImmediate(true); // txtId.setWidth("100.0%"); // txtId.setHeight("-1px"); // searchLayout.addComponent(txtId, 1, 0); lblMaCqt = new Label(); lblMaCqt.setImmediate(true); lblMaCqt.setWidth("100.0%"); lblMaCqt.setHeight("-1px"); lblMaCqt.setValue(BundleUtils.getString("label.TaxAuthority.maCqt")); searchLayout.addComponent(lblMaCqt, 0, 0); txtMaCqt = new TextField(); txtMaCqt.setImmediate(true); txtMaCqt.setWidth("100.0%"); txtMaCqt.setHeight("-1px"); searchLayout.addComponent(txtMaCqt, 1, 0); lblTenCqt = new Label(); lblTenCqt.setImmediate(true); lblTenCqt.setWidth("100.0%"); lblTenCqt.setHeight("-1px"); lblTenCqt.setValue(BundleUtils.getString("label.TaxAuthority.tenCqt")); searchLayout.addComponent(lblTenCqt, 2, 0); txtTenCqt = new TextField(); txtTenCqt.setImmediate(true); txtTenCqt.setWidth("100.0%"); txtTenCqt.setHeight("-1px"); searchLayout.addComponent(txtTenCqt, 3, 0); lblMaTinh = new Label(); lblMaTinh.setImmediate(true); lblMaTinh.setWidth("100.0%"); lblMaTinh.setHeight("-1px"); lblMaTinh.setValue(BundleUtils.getString("label.TaxAuthority.maTinh")); searchLayout.addComponent(lblMaTinh, 0, 1); cboMaTinh = new ComboBox(); cboMaTinh.setImmediate(true); cboMaTinh.setWidth("100.0%"); cboMaTinh.setHeight("-1px"); searchLayout.addComponent(cboMaTinh, 1, 1); lblMaQuanHuyen = new Label(); lblMaQuanHuyen.setImmediate(true); lblMaQuanHuyen.setWidth("100.0%"); lblMaQuanHuyen.setHeight("-1px"); lblMaQuanHuyen.setValue(BundleUtils.getString("label.TaxAuthority.maQuanHuyen")); searchLayout.addComponent(lblMaQuanHuyen, 2, 1); txtMaQuanHuyen = new TextField(); txtMaQuanHuyen.setImmediate(true); txtMaQuanHuyen.setWidth("100.0%"); txtMaQuanHuyen.setHeight("-1px"); searchLayout.addComponent(txtMaQuanHuyen, 3, 1); lblStatus = new Label(); lblStatus.setImmediate(true); lblStatus.setWidth("100.0%"); lblStatus.setHeight("-1px"); lblStatus.setValue(BundleUtils.getString("label.TaxAuthority.status")); searchLayout.addComponent(lblStatus, 0, 2); cboStatus = new ComboBox(); cboStatus.setImmediate(true); cboStatus.setWidth("100.0%"); cboStatus.setHeight("-1px"); searchLayout.addComponent(cboStatus, 1, 2); }