I've implemented JQuery sortable, and it works fine. The problem is I can't pass the list in its new order to a controller so i can save it.

<script type="text/javascript">  
    $(document).ready(function() {  
        $("#sortable").sortable({ axis: "y" });  
    });  

    $(function() {  
        $("#submit-list").button();  

        $("#submit-list").click(function() {  
            debugger;  
            $.ajax({  
                url: '/Admin/SortedLists/',  
                data: { items: $("#sortable").sortable('toArray') },  
                type: 'post',  
                traditional: true  
            });  
        });  

    });  
</script>    

<h2>Edit Roles</h2>  

<div>  
    <ul id="sortable">  
        <% foreach (var item in Model.Roles) { %>                  
            <li>                  
                <%=Html.AttributeEncode(item.Name)%>                              
            </li>                                                                               
        <% } %>             
    </ul>  

    <input type="submit" value="Save" id="submit-list"/>  
</div>  

and my controller:

[HttpPost]  
    public EmptyResult SortedLists(List<string> items)  
    {  
        return new EmptyResult();  
    }  

List items comes back with the corrent number of elements - except each item are empty strings.

If the original list looks like this

  1. 1 - Car
  2. 2 - Boat
  3. 3 - Motorcycle
  4. 4 - Plane

And the user drags and resorts to be

  1. 4 - Plane
  2. 1 - Car
  3. 3 - Motorcycle
  4. 2 - Boat

How can i pass that new order? I suppose id pass the whole thing on submit, delete the entire list and resubmit this whole list

unless theres a better way? Taking advantage of Linq (using Linq to SQL) where i can insert the new order on everychange and do a submit changes?

link|improve this question

41% accept rate
1  
Have you tried putting an id to each of the <li> elements? – Francisco Jul 22 '10 at 18:28
Oh ya that worked lol - thanks for the help :) – Jerrold Jul 22 '10 at 20:20
feedback

1 Answer

All i had to do was fill in the id field for each list item :P, toArray returned the list fine after that

<ul id="sortable">  
    <% foreach (var item in Model.Roles) { %>                  
        <li id="<%=Html.AttributeEncode(item.Name)%>"><%=Html.AttributeEncode(item.Name)%></li>                                                                                    
    <% } %>             
</ul>  
link|improve this answer
One thing I thought about, though not sure if it's valid or not, is what if your id's conflict with something else on the page? For example, I'm using multiple lists, where each parent of the list has a numerical id, and each item has a numerical id, and the ranges of parent and child id's overlap. So doing this, can break the rule of each element having a unique id. So instead I prepend something to the id, e.g. "parent" + id, and "child" + id – jamiebarrow Aug 5 '10 at 13:41
feedback

Your Answer

 
or
required, but never shown

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