Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I implement drag and drop for a WinJS ListView control. I can't seem to find any examples. Basically I have a To Do List which I would like to be able to drag and drop elements to sort the priority. Thanks for any help!

share|improve this question

2 Answers

up vote 2 down vote accepted

You can't. Drag & Drop isn't supported in ListView right now.

share|improve this answer
Bummer. Do you know of any pitfalls with the ListView if I try to use HTML 5 drag and drop similar to this: html5rocks.com/en/tutorials/dnd/basics – B Z Sep 25 '12 at 16:00
I don't believe HTML 5 drag & drop is implemented either, but I may be wrong on that. In any event, the ListView does a ton of manual layout and doesn't listen for drag&drop messages, so you're going to have a hard time of it. – Chris Tavares Sep 25 '12 at 20:46

This post has a full explanation on how this can be done

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.