hey
i saw many sortables around including protoype, its seems that the interface
plugin is the most simple , but i dont have a clue how can i serialize the
data after the user release the dragged content, and also, how can i send it
to the server for proccessing the data

anyone can see this code? 

<script type="text/javascript"> 
$(document).ready( 
        function () { 
                $('ul').Sortable( 
                        { 
                                accept : 'sortableitem', 
                                activeclass : 'sortableactive', 
                                hoverclass : 'sortablehover', 
                                helperclass : 'sorthelper', 
                                opacity: 0.8, 
                                fx: 100, 
                                revert: true, 
                                onchange: seri,
                              //  onout: function(result) {($)};
                                tolerance: 'intersect' 
                        } 
                     
                )
        } 
); 
function seri() {
serial = $.SortSerialize('sortable');
alert(serial.hash);
}
</script> 
-- 
View this message in context: 
http://www.nabble.com/looking-for-sortable-plugin-that-serialized-on-mouse-release-tf3407504.html#a9491922
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to