Sortable Issue
by skillilea
HTML
<div>
<ul id="jqParetoEditList">
<li>
<div>
<input type="text" />
</div>
</li>
<li>
<div>
<input type="text" />
</div>
</li>
</ul>
</div>
JavaScript
$('#jqParetoEditList').sortable({
cancel: ".fixed",
delay: 100,
//connectWith: "",
stop: function (event, ui) {
//p.HandleSortPareto(ui, ui.item) // note this just handles the change in order
},
start: function (event, ui) {}
});