Sortable Issue

HTML

<div>
    <ul id="jqParetoEditList">
        <li>
            <div>
                <input type="text" value="1" />
            </div>
        </li>
        <li>
            <div>
                <input type="text" value="2"/>
            </div>
        </li>
    </ul>
</div>

JavaScript

$('#jqParetoEditList').sortable({
    cancel: ".fixed,input",
    delay: 100,
    //connectWith: "",
    stop: function (event, ui) {
        //p.HandleSortPareto(ui, ui.item)  // note this just handles the change in order
    },
    start: function (event, ui) {}
});