/* * 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.types.Cursor; import com.smartgwt.client.types.DragAppearance; import com.smartgwt.client.types.ImageStyle; import com.smartgwt.client.types.Overflow; import com.smartgwt.client.util.EventHandler; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.Img; import com.smartgwt.client.widgets.HTMLFlow; import com.smartgwt.client.widgets.grid.ListGrid; import com.smartgwt.client.widgets.grid.ListGridField; import com.smartgwt.client.widgets.layout.HLayout; import com.smartgwt.client.widgets.layout.VLayout; import com.smartgwt.client.widgets.viewer.DetailViewerField; import com.smartgwt.client.widgets.tile.TileGrid; import com.smartgwt.client.widgets.tile.TileRecord; import com.smartgwt.client.widgets.events.DragMoveEvent; import com.smartgwt.client.widgets.events.DragMoveHandler; import com.smartgwt.client.widgets.events.DragStartEvent; import com.smartgwt.client.widgets.events.DragStartHandler; import com.smartgwt.sample.showcase.client.data.AnimalXmlDS; public class DragTilesMoveSample implements EntryPoint { public void onModuleLoad() { TileGrid tileGrid = new TileGrid(); tileGrid.setWidth(500); tileGrid.setHeight(400); tileGrid.setTileWidth(150); tileGrid.setTileHeight(150); tileGrid.setCanAcceptDrop(true); tileGrid.setCanDrag(true); tileGrid.setData(new TileRecord[]{}); DetailViewerField pictureField = new DetailViewerField("picture"); pictureField.setType("image"); pictureField.setImageURLPrefix("animals/"); DetailViewerField commonNameField = new DetailViewerField("commonName"); tileGrid.setFields(pictureField, commonNameField); ListGrid listGrid = new ListGrid(); listGrid.setWidth(300); listGrid.setHeight(400); listGrid.setDataSource(AnimalXmlDS.getInstance()); listGrid.setAutoFetchData(true); listGrid.setCanDragRecordsOut(true); listGrid.setCanAcceptDroppedRecords(true); listGrid.setCanReorderRecords(true); ListGridField commonNameField2 = new ListGridField("commonName"); ListGridField lifeSpanField = new ListGridField("lifeSpan"); lifeSpanField.setWidth(50); ListGridField statusField = new ListGridField("status"); listGrid.setFields(commonNameField2, lifeSpanField, statusField); VLayout vLayout = new VLayout(20); vLayout.addMember(new HTMLFlow(DESCRIPTION)); HLayout hLayout = new HLayout(10); hLayout.addMember(listGrid); hLayout.addMember(tileGrid); vLayout.addMember(hLayout); vLayout.draw(); } }