﻿
$(function () {
    $(".LeftSort").sortable({
        forcePlaceholderSize: true,
        cursor: "move",
        cancel: ".nosort,input",
        stop: function (event, ui) { SaveToSession(".clBox") } //Save order to session (Ajax call, so in jquery-ajax.js)
    });
        
    //$(".ColumnLeft").disableSelection();
});



$(function () {
    
    $(".RightSort").sortable({
        forcePlaceholderSize: true,
        cursor: "move",
        cancel: ".nosort,input",
        stop: function(event,ui) { SaveToSession(".crBox") } //Save order to session (Ajax call, so in jquery-ajax.js)
    });
        
    //$(".ColumnRight").disableSelection();
});




