Reputation: 3141
Does anyone know of a sample GWT code or third party package for making web parts that allow user to customize web site layout like it's done in iGoogle ?
TIA
Upvotes: 0
Views: 163
Reputation: 7244
I was looking for the same thing a few weeks ago. gwt-dnd is good but I found the motherload with DragAndDropPluginForGWTDeveloppers.
This is what you want?:
Check out the project at:
http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGWTDeveloppers
It supports maven and GWT 2.2!
Upvotes: 2
Reputation: 20890
Look at gwt-dnd, which has great support for dragging & dropping GWT widgets. You'll have to save the position of the widgets if you want them to stay in the same place, but that's all!
http://allen-sauer.com/com.allen_sauer.gwt.dnd.demo.DragDropDemo/DragDropDemo.html#InsertPanelExample - drag the green boxes around.
Upvotes: 1