Anil
Anil

Reputation: 77

Implementing Drag n Drop using JQuery

I am developing a MVC application wherein I have to implement Drag n Drop functionality. I also want to get the source as well as target items/ records in the table/ div once the item is dropped on a target place. Then both the source and target values will be passed to the action method defined in the controller to update the same in the database.

Can anyone please suggest some links?

Upvotes: 2

Views: 4751

Answers (1)

m90
m90

Reputation: 11822

Use http://api.jquery.com/serialize/ to pass your data and jQuery UI sortables http://jqueryui.com/demos/sortable/ for the drag and drop.

Upvotes: 2

Related Questions