Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
gwt のドラッグ操作にゴースト効果を実装しようとしています。gwtquery を使用しています。境界ドラッグ効果としても知られている可能性があります。実装するアイデアはありますか? 注:jqueryで簡単に実装できることは知っていますが、gwtを使い続けたいです。
Try this code :
DraggableOptions options = new DraggableOptions(); options.setOpacity(0.5); options.setHelper(HelperType.CLONE); $("#myWidget").as(Draggable).draggable(options);