jQuery Sortable - 限制列表中的项目数

时间:2010-03-13 13:38:45

标签: jquery jquery-ui limit jquery-ui-sortable

我有一个日程表我正在使用jQuery Sortable进行编辑。

每天都是UL,每个事件都是LI。

我的jQuery是:

    $("#colSun, #colMon, #colTue, #colWed, #colThu").sortable({
         connectWith: '.timePieces',
         items: 'li:not(.lith)'
    }).disableSelection();

使所有LI可以排序,除了具有类“lith”(日期名称)的那些。 用户可以每天拖动一个事件,或者通过单击按钮添加新事件,该按钮会将新的可拖动事件(LI)附加到第一个UL(星期日)。

我想让每一天只接受最多10个活动。 我该怎么做?

提前致谢!

2 个答案:

答案 0 :(得分:27)

  
$(function() {
    $(".sortables").sortable({
        connectWith: '.connectedSortable',
        //receive: This event is triggered when a
        //connected sortable list has received an item from another list.
        receive: function(event, ui) {
            // so if > 10
            if ($(this).children().length > 10) {
                //ui.sender: will cancel the change.
                //Useful in the 'receive' callback.
                $(ui.sender).sortable('cancel');
            }
        }
    }).disableSelection();
});

答案 1 :(得分:10)

要在每次尝试将新项目拖动到特定列表(动态)时触发该功能,您需要使用on()而不是receive:方法。

http://jqueryui.com/demos/sortable/#event-receive

$(function() {
    $( "#day1, #day2" ).sortable({
        connectWith: ".connectedSortable"
    }).disableSelection();

    $( "#day1" ).on( "sortreceive", function(event, ui) {
        if($("#day1 li").length > 10){
            $(ui.sender).sortable('cancel');
        }
    });

});