/* * 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 com.smartgwt.client.types.Autofit; import com.smartgwt.client.types.ListGridEditEvent; import com.smartgwt.client.types.RowEndEditAction; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.IButton; import com.smartgwt.client.widgets.events.ClickEvent; import com.smartgwt.client.widgets.events.ClickHandler; import com.smartgwt.client.widgets.grid.ListGrid; import com.smartgwt.client.widgets.grid.ListGridField; import com.smartgwt.client.widgets.grid.ListGridRecord; import com.smartgwt.client.widgets.layout.VLayout; import com.google.gwt.core.client.EntryPoint; public class AutofitNewRecordsSample implements EntryPoint { public ListGridRecord createRecord(String countryCode, String countryName, int population) { ListGridRecord record = new ListGridRecord(); record.setAttribute("countryCode", countryCode); record.setAttribute("countryName", countryName); record.setAttribute("population", population); return record; } public void onModuleLoad() { ListGridRecord[] data = new ListGridRecord[]{ createRecord("US", "United States", 298444215), createRecord("CH", "China", 1313973713), createRecord("JA", "Japan", 127463611) }; final ListGrid countryGrid = new ListGrid(); countryGrid.setWidth(500); countryGrid.setAutoFitMaxRecords(6); countryGrid.setAutoFitData(Autofit.VERTICAL); countryGrid.setCanEdit(true); countryGrid.setEditEvent(ListGridEditEvent.CLICK); countryGrid.setListEndEditAction(RowEndEditAction.NEXT); ListGridField countryCodeField = new ListGridField("countryCode", "Country Code"); ListGridField nameField = new ListGridField("countryName", "Country"); ListGridField populationField = new ListGridField("population", "Population"); countryGrid.setFields(countryCodeField, nameField, populationField); countryGrid.setData(data); IButton button = new IButton("Edit New"); button.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { countryGrid.startEditingNew(); } }); VLayout vLayout = new VLayout(20); vLayout.addMember(countryGrid); vLayout.addMember(button); vLayout.draw(); } // match topology of SmartClient FE Sample @Override protected boolean shouldWrapViewPanel() { return true; } }