/* * 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.data.DataSource; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.IButton; import com.smartgwt.client.widgets.Label; 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.layout.VLayout; import com.smartgwt.sample.showcase.client.data.ItemSupplyLocalDS; public class GridRecordRemoveSample implements EntryPoint { public void onModuleLoad() { VLayout layout = new VLayout(15); Label label = new Label(); label.setHeight(10); label.setWidth100(); label.setContents("Showing items in Category 'Rollfix Glue"); layout.addMember(label); final DataSource dataSource = ItemSupplyLocalDS.getInstance(); final ListGrid listGrid = new ListGrid(); listGrid.setWidth100(); listGrid.setHeight(200); listGrid.setDataSource(dataSource); listGrid.setAutoFetchData(true); layout.addMember(listGrid); IButton button = new IButton("Remove"); button.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { listGrid.removeSelectedData(); } }); layout.addMember(button); layout.draw(); } }