Sunil Gulabani
Sunil Gulabani

Reputation: 29

Drag-n-Drop in GWT 2.3

I have two grids - one is TreeGrid and other one is Simple Grid. How do i implement the Drag-n-Drop in that as GWT 2.3 doesn't provide Drag-n-Drop feature in Grids. And simultaneously when drop event is fired i need to attach button with the elements of the grid. So is there any solution that can meet my requirements in GWT 2.3 ??

Upvotes: 1

Views: 803

Answers (3)

Tom Carchrae
Tom Carchrae

Reputation: 6476

Since you are using SmartGWT you can use their own drag and drop API - see the showcase for examples: http://www.smartclient.com/smartgwt/showcase/#effects_dd_tree_move_drag_nodes

Upvotes: 0

jdramaix
jdramaix

Reputation: 1104

Have a look at the dnd plugin of gwtquery http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGWTDeveloppers

Upvotes: 0

mwuertinger
mwuertinger

Reputation: 217

Have a look at gwt-dnd it's an excellent drag'n'drop library. I'm using it intensively in a project and it works very well. However I'm not sure whether it supports TreeGrid and SimpleGrid.

Upvotes: 2

Related Questions