Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using jQuery 1.4 and jQuery UI sortable, my problem that i have two sortable implementations in the same page.

This is the one that works:

catlst.sortable({
handle:'div.ordenador',
update: function(event,ui) {
   var nx = ui.item.next();
   var pr = ui.item.prev();
   var im = ui.item;
   var catid = im.parent().parent().attr('catid');
   var direc = nx && nx.text() ? 'antes' : 'despues';
   $.post('curso/ordenar',
     'tipo='+catid+
     '&id='+im.attr('actividad_id')+
     '&direc='+direc+
     '&refid='+(direc=='antes'?nx.attr('actividad_id'):pr.attr('actividad_id')),null);
   }
});

It can sort successfully, but the second one:

    $('#clases').sortable({
    handle: 'div.ordenador-carpeta',
    axis: 'y',
    update: function(event,ui) {
        var nx = ui.item.next();
        var pr = ui.item.prev();
        var im = ui.item;
        var direc = nx && nx.text() ? 'antes' : 'despues';
    }
});

In both cases, #clases and 'catlst' are divs, that has only divs inside.

Second code simply doesn't work, i can drag but drop, the page layout get lost like if it were just removed and page reloaded.

Plus, Firebug gives me this error: attempt to run compile-and-go script on a cleared scope jquery.ui.js Line 178

This is driving me crazy, should i give more info?

share|improve this question
oh, finally i solved it, the problem was a <script>document.write...</script> inside sortables items, so every time they changed its position, document.write used to work and ruin the page, i know it's not a good a idea to use it, in fact i'm removing them from my js. I hope it can help others. – Gamaliel Aug 27 '11 at 9:39
1  
Feel free to answer your question yourself and accept it. Others would see immediately that there is a soltion. stackoverflow.com/faq#questions – Martin Schlagnitweit Aug 28 '11 at 21:17

1 Answer

up vote 1 down vote accepted

The problem was a <script>document.write...</script> inside sortables items. So every time they changed its position, document.write used to work and ruin the page, I know it's not a good a idea to use it, in fact I'm removing them from my js.

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.