/* * SmartGWT (GWT for SmartClient) * Copyright 2008 and beyond, Isomorphic Software, Inc. * * SmartGWT 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. SmartGWT 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 com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.grid.ListGrid; import com.smartgwt.client.widgets.grid.ListGridField; import com.smartgwt.sample.showcase.client.data.ItemSupplyXmlDS; public class GridSimpleFreezeSample implements EntryPoint { public void onModuleLoad() { final ListGrid supplyItemGrid = new ListGrid(); supplyItemGrid.setWidth(500); supplyItemGrid.setHeight(224); supplyItemGrid.setDataSource(ItemSupplyXmlDS.getInstance()); supplyItemGrid.setAutoFetchData(true); ListGridField nameField = new ListGridField("itemName", 150); nameField.setFrozen(true); ListGridField categoryField = new ListGridField("category", 100); ListGridField skuField = new ListGridField("SKU", 100); ListGridField unitsField = new ListGridField("units", 80); ListGridField descriptionField = new ListGridField("description", 250); supplyItemGrid.setFields(nameField, categoryField, skuField, unitsField, descriptionField); supplyItemGrid.draw(); } }