﻿$(function() {

//$("#CheckboxSelectAll").click(function() {
//    
//    
//    
//        if ($(this).is(":checked")) {
//            alert("checked");
//        } else {
//            alert("unchecked");
//        }
//    });

});



$(function() {

    $("#Sortable").sortable({
        stop: function(event, ui) {
            //$('#Sortable').sortable('serialize');
            //alert($('#Sortable').sortable('serialize'));
        }
    });

    $("#Sortable").disableSelection();


    $("#UpdateList").click(function() {
        var order = $("#Sortable").sortable('serialize', { key: 'id' });

        order += "&CompetitionDateId=" + $("#CompetitionDateId").text();

        $('#AJAXResponse').text('');

        $.ajax({
            url: 'CompetitionOrder.ashx'
            , data: order
            , success: function(msg) {
                $('#AJAXResponse').append(msg);
            }
        });
    });

});

