4

Web アプリケーション用のダッシュボード タイプの GUI を作成しようとしています。ユーザーがさまざまな要素(おそらく画像ボタン、アンカータグ、または単にdivのいずれか)をさまざまな(定義された)場所にドラッグアンドドロップし、それらの設定を(Cookieまたはサーバ)。私は .Net 2.0 フレームワークで c# を使用しています。mootools を使用してみましたが、最近の更新により、ドラッグ アンド ドロップ機能が役に立たなくなりました。探しているものがそこにあることを知っているので、最初から構築する必要はありません。

ありがとう。

4

5 に答える 5

4

I have been looking at this kind of functionality myself recently and have decided on using jQuery with the help of jQuery UI. I came across a large amount of information that also suggested Yahoo UI (YUI), I had already started learning jQuery due to the AJAX support that it offers, so I stuck with it.

jQuery UI Site
jQuery UI Documentation
Example of a drag and drop screen layout with jQuery UI
Introduction to jQuery UI

If you decide to use the YUI javascript library, here is a link to a vast amount of videos to help get you started.

http://developer.yahoo.com/yui/theater/

于 2008-08-19T14:44:28.747 に答える
3

それでも MooTools にもう一度チャンスを与えたい場合は、Mocha UIを検討することをお勧めします。

于 2008-09-16T19:06:33.027 に答える
1

私は、そのような AJAXy 用に jQuery を使用することを好みます。また、クライアント側のコードを非常に簡単に記述できる非常に優れたプラグインも多数あります。

ドラッグ アンド ドロップ専用のプラグイン ページは次のとおりです。

http://plugins.jquery.com/project/Plugins/category/45

Ajax コールバックも非常に簡単なので、セットアップの保存もかなり簡単です。

于 2008-08-19T14:04:57.330 に答える
0

You might want to look at DropThings on Codeplex.

于 2008-08-19T14:25:23.390 に答える
0

Microsoft ASP.Net Ajax と AjaxControlToolkit を使用して、このようなことを行いました。ResizeableControl と DragPanel があります。これらを使用し、パネル内に IFrame をホストしてコンテンツを表示しました。

かなりうまくいきました。


このサイト:

http://www.asp.net/learn/videos/default.aspx?tabid=63#ajax

コントロールの使用を開始する方法を示すチュートリアル ビデオが多数あります。

于 2008-08-19T14:09:59.847 に答える