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

Like Asana (https://app.asana.com/), there are many project management apps. One of the key features they should provide is a way to smoothly drag and drop project items to reorder them in a workspace.

My question is: what should be done to support this feature on the backend side? Here's what I'm guessing:

1) as a backend data storage, a database is used to store project items permanently. 2) each project item has a field (column) called "rank" denoting the rank of the item in a workspace. 3) the database has an unclustered index build on the "rank" column. 4) whenever a project item is moved, the rank of the project item is updated so that it could be located at the right position.

I'm not sure if this is a right implementation to support the "dran&drop" feature. If not, what would be an efficient way to deal with this?

thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.