14

小提琴

$(document).live('mouseup', function () {
    flag = false;
});

var colIndex;
var lastRow;

$(document).on('mousedown', '.csstablelisttd', function (e) {
    //This line gets the index of the first clicked row.
    lastRow = $(this).closest("tr")[0].rowIndex;

    var rowIndex = $(this).closest("tr").index();
    colIndex = $(e.target).closest('td').index();
    $(".csstdhighlight").removeClass("csstdhighlight");
    if (colIndex == 0 || colIndex == 1) //)0 FOR FULL TIME CELL AND 1 FOR TIME SLOT CELL. 
    return;
    if ($('#contentPlaceHolderMain_tableAppointment tr').eq(rowIndex).find('td').eq(colIndex).hasClass('csstdred') == false) {
        $('#contentPlaceHolderMain_tableAppointment tr').eq(rowIndex).find('td').eq(colIndex).addClass('csstdhighlight');

        flag = true;
        return false;
    }
});

我正在拖动表格单元格。在拖动(向下移动)时,我还必须移动表格滚动。而且我想反向选择单元格(向上方向)。我该怎么办。

我已经选择了 tr 类。

4

3 回答 3

7

更新了 jsFiddle:http: //jsfiddle.net/qvxBb/2/

像这样禁用正常选择:

.myselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    user-select: none;
}

并像这样使用 javascript 处理行选择:

// wether or not we are selecting
var selecting = false;
// the element we want to make selectable
var selectable = '.myselect tr:not(:nth-child(1)) td:nth-child(3)';

$(selectable).mousedown(function () {
    selecting = true;
}).mouseenter(function () {
    if (selecting) {
        $(this).addClass('csstdhighlight');
        fillGaps();
    }
});
$(window).mouseup(function () {
    selecting = false;
}).click(function () {
    $(selectable).removeClass('csstdhighlight');
});

// If you select too fast, js doesn't fire mousenter on all cells. 
// So we fill the missing ones by hand
function fillGaps() {
    min = $('td.csstdhighlight:first').parent().index();
    max = $('td.csstdhighlight:last').parent().index();
    $('.myselect tr:lt('+max+'):gt('+min+') td:nth-child(3)').addClass('csstdhighlight');
}

我刚刚在 HTML 中添加了一个类。除了我在这里展示的内容之外,所有的 HTML 和 CSS 都保持不变。

更新了 jsFiddle:http: //jsfiddle.net/qvxBb/2/

于 2013-07-27T22:59:01.207 回答
3

你的桌子有几个问题,但我会更正你要求的那个。
要在鼠标移出容器时让表格滚动,请在mousedown事件处理程序中添加以下代码:

$('body').on('mousemove', function(e){
    div = $('#divScroll');      
    if(e.pageY > div.height() && (e.pageY - div.height()) > div.scrollTop()) {
        div.scrollTop(e.pageY - div.height());
    }
});

而这个,在你的mouseup事件处理程序中:

$('body').off('mousemove');

查看更新的小提琴

但是现在,又出现了一个问题。这是因为您的其余代码。由于鼠标离开了列,因此未选择行。

于 2013-07-18T13:30:41.343 回答
3

试着去掉return false;里面

$('#contentPlaceHolderMain_tableAppointment tr').eq(rowIndex).find('td').eq(colIndex).addClass('csstdhighlight');
    flag = true;
    return false; //Remove this line
} 

因为return false;停止浏览器默认行为(自动滚动)。

演示

于 2013-07-18T13:59:16.953 回答