Allowing users to manually sort items in a webapp

I would like to make a simple web application that displays 20 or so images to users and allows them to manually sort the images from favorite to least favorite by dragging or using some form of up / down controls and then submitting that ordering. Are there existing tools, both in Javascript and Silverlight, that make this easier?

By the way, I'm thinking about using Django or ASP.NET MVC.

+1


source to share


2 answers


jQuery UI has sorts .



+4


source


I see that you have checked using Silverlight, so I am assuming you are using ASP.NET technologies. You can use some changes to ReorderList in Ajax Control ToolKit:

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ReorderList/ReorderList.aspx



I'm sure there are hundreds of other controls like this.

0


source







All Articles