提问者:小点点

Infragistics igGrid jQuery UI拖动


我使用IgniteUI版本16.2从Infragistics获得了igGrid。

我正在尝试使用 jQuery UI 版本 1.11.4(与 jQuery 版本 1.11.3 结合使用)中的“可拖动”库使行可拖动。

我的“可丢弃”目标是 igGrid 之外的 div。

只要我呆在网格内,我就可以很好地拖放行。但是,当我试图将行拖出网格时,网格开始滚动。

这是我的jQuery,它将行转换为“可拖动”元素:

$("#grid > tbody > tr").draggable({
    helper: "clone",
    revert: "invalid",
    cursorAt: { bottom: 0, left: 0 },
    start: function (evt, ui) {

        // get the id of the row being dragged
        var row_id = ui.helper.prevObject.data("id");

        // get a reference to the <tr> being dragged
        var original_row_element = $("#grid > tbody > tr[data-id='" + row_id + "']");

        // get the collection of all <tr>'s that come after the selected row
        var all_rows_after_the_original = original_row_element.nextAll("tr");

        // move all those rows to a temporary holding <div> outside of the grid
        $("#temp_row_holder").append(all_rows_after_the_original);

    },
    stop: function (evt, ui) {

        // get all those rows that we moved out of the grid earlier
        var all_rows_after_the_original = $("#temp_row_holder").children("tr");

        // move the <tr>'s back into the grid
        $("#grid > tbody").append(all_rows_after_the_original);

    }
});

这是我的网格中被Infragistics库渲染后的可滚动部分:

<div id="grid_scroll" class="ui-iggrid-scrolldiv ui-widget-content igscroll-touchscrollable" data-scroll="true" data-onedirection="true" data-xscroller="#grid_hscroller" style="overflow-x: hidden; overflow-y: auto; height: 311px;">
    <table id="grid" role="grid" aria-describedby="grid_scroll" cellpadding="0" cellspacing="0" border="0" class="ui-iggrid-table ui-widget-content" style="table-layout: fixed;">
        <colgroup></colgroup>
        <tbody role="rowgroup" class="ui-widget-content ui-iggrid-tablebody ui-ig-record ui-iggrid-record">
            <tr data-id="c3bf5936-8786-e711-8135-caf5c8230062" role="row" tabindex="0" class="open-hand-pointer ui-draggable ui-draggable-handle"></tr>
            <tr class="ui-ig-altrecord ui-iggrid-altrecord open-hand-pointer ui-draggable ui-draggable-handle" data-id="a2a54d20-5a83-e711-8135-caf5c8230062" role="row" tabindex="0"></tr>
            <tr data-id="ca784490-cb82-e711-8135-caf5c8230062" role="row" tabindex="0" class="open-hand-pointer ui-draggable ui-draggable-handle"></tr>
            <tr class="ui-ig-altrecord ui-iggrid-altrecord open-hand-pointer ui-draggable ui-draggable-handle" data-id="4d95ba39-cd81-e711-8135-caf5c8230062" role="row" tabindex="0"></tr>
            <tr data-id="7b02f501-cb81-e711-8135-caf5c8230062" role="row" tabindex="0" class="open-hand-pointer ui-draggable ui-draggable-handle"></tr>
        </tbody>
    </table>
</div>

如您所见,我当前的解决方案是删除所有的兄弟< code >

似乎会有一些CSS或javascript可以修改“start”事件上的网格以防止其滚动。我还尝试摆弄overflow-y属性,因为对我不懂CSS的大脑来说,这似乎是显而易见的答案,但没有任何帮助。

编辑:这是一把JS小提琴


共1个答案

匿名用户

您可以使用滚动选项。默认情况下为 true,并导致拖动时自动滚动。你需要滚动:假来防止像这样的自动滚动:

$("#GRIDRFDList > tbody > tr").draggable({
        helper: "clone",
        revert: "invalid",
        cursorAt: { bottom: 0, left: 0 },
        scroll: false // Add this line
    });

在线输出(小提琴)