/* * Smart GWT (GWT for SmartClient) * Copyright 2008 and beyond, Isomorphic Software, Inc. * * Smart GWT is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 3 * as published by the Free Software Foundation. Smart GWT is also * available under typical commercial license terms - see * http://smartclient.com/license * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ import java.util.LinkedHashMap; import com.smartgwt.client.data.DataSource; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.form.fields.ComboBoxItem; import com.smartgwt.sample.showcase.client.data.ItemSupplyXmlDS; import com.google.gwt.core.client.EntryPoint; public class LocalAndDataboundComboBoxSample implements EntryPoint { public void onModuleLoad() { DataSource supplyItemDS = ItemSupplyXmlDS.getInstance(); final DynamicForm form = new DynamicForm(); form.setWidth(500); form.setNumCols(4); ComboBoxItem bugStatusItem = new ComboBoxItem("bugStatus"); bugStatusItem.setTitle("Bug Status"); LinkedHashMap
valueMap = new LinkedHashMap
(); valueMap.put("new", "New"); valueMap.put("active", "Active"); valueMap.put("revisit", "Revisit"); valueMap.put("fixed", "Fixed"); valueMap.put("delivered", "Delivered"); valueMap.put("resolved", "Resolved"); valueMap.put("reopened", "Reopened"); bugStatusItem.setValueMap(valueMap); ComboBoxItem itemName = new ComboBoxItem("itemName"); itemName.setTitle("Item Name"); itemName.setPickListWidth(250); itemName.setOptionDataSource(supplyItemDS); form.setItems(bugStatusItem, itemName); form.draw(); } }