/* * 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.Alignment; import com.smartgwt.client.types.ListGridFieldType; import com.smartgwt.client.util.SC; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.IButton; import com.smartgwt.client.widgets.ImgButton; 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.HLayout; import com.smartgwt.sample.showcase.client.data.CountrySampleData; import com.google.gwt.core.client.EntryPoint; public class GridCellWidgetsSample implements EntryPoint { public void onModuleLoad() { final ListGrid countryGrid = new ListGrid() { @Override protected Canvas createRecordComponent(final ListGridRecord record, Integer colNum) { String fieldName = this.getFieldName(colNum); if (fieldName.equals("iconField")) { HLayout recordCanvas = new HLayout(3); recordCanvas.setHeight(22); recordCanvas.setWidth100(); recordCanvas.setAlign(Alignment.CENTER); ImgButton editImg = new ImgButton(); editImg.setShowDown(false); editImg.setShowRollOver(false); editImg.setLayoutAlign(Alignment.CENTER); editImg.setSrc("silk/comment_edit.png"); editImg.setPrompt("Edit Comments"); editImg.setHeight(16); editImg.setWidth(16); editImg.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { SC.say("Edit Comment Icon Clicked for country : " + record.getAttribute("countryName")); } }); ImgButton chartImg = new ImgButton(); chartImg.setShowDown(false); chartImg.setShowRollOver(false); chartImg.setAlign(Alignment.CENTER); chartImg.setSrc("silk/chart_bar.png"); chartImg.setPrompt("View Chart"); chartImg.setHeight(16); chartImg.setWidth(16); chartImg.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { SC.say("Chart Icon Clicked for country : " + record.getAttribute("countryName")); } }); recordCanvas.addMember(editImg); recordCanvas.addMember(chartImg); return recordCanvas; } else if (fieldName.equals("buttonField")) { IButton button = new IButton(); button.setHeight(18); button.setWidth(65); button.setIcon("flags/16/" + record.getAttribute("countryCode") + ".png"); button.setTitle("Info"); button.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { SC.say(record.getAttribute("countryName") + " info button clicked."); } }); return button; } else { return null; } } }; countryGrid.setShowRecordComponents(true); countryGrid.setShowRecordComponentsByCell(true); countryGrid.setCanRemoveRecords(true); countryGrid.setWidth(550); countryGrid.setHeight(224); countryGrid.setShowAllRecords(true); ListGridField countryCodeField = new ListGridField("countryCode", "Flag", 40); countryCodeField.setAlign(Alignment.CENTER); countryCodeField.setType(ListGridFieldType.IMAGE); countryCodeField.setImageURLPrefix("flags/16/"); countryCodeField.setImageURLSuffix(".png"); ListGridField nameField = new ListGridField("countryName", "Country"); ListGridField capitalField = new ListGridField("capital", "Capital"); ListGridField continentField = new ListGridField("continent", "Continent"); ListGridField buttonField = new ListGridField("buttonField", "Info"); buttonField.setAlign(Alignment.CENTER); ListGridField iconField = new ListGridField("iconField", "Comments/Stats"); iconField.setWidth(100); countryGrid.setFields(countryCodeField, nameField, capitalField, continentField, buttonField, iconField); countryGrid.setCanResizeFields(true); countryGrid.setData(CountrySampleData.getRecords()); countryGrid.draw(); } }