返回介绍

jQuery EasyUI 扩展 – 树形网格行拖放

发布于 2018-05-28 02:45:16 字数 2544 浏览 1188 评论 0 收藏 0

用法

包含 'treegrid-dnd.js' 文件

<script type="text/javascript" src="treegrid-dnd.js"></script>

启用拖拽与放置

    <table title="Folder Browser"
            data-options="
                data: data,
                rownumbers: true,
                idField: 'id',
                treeField: 'name',
                onLoadSuccess: function(row){
                    $(this).treegrid('enableDnd', row?row.id:null);
                }
            ">
        <thead>
            <tr>
                <th data-options="field:'name'" width="220">Name</th>
                <th data-options="field:'size'" width="150" align="right">Size</th>
                <th data-options="field:'date'" width="200">Modified Date</th>
            </tr>
        </thead>
    </table>

事件

该事件扩展自树形网格(treegrid),下面是为树形网格(treegrid)添加的事件。

名称参数描述
onBeforeDragrow当一行的拖拽开始前触发,返回 false 则取消拖拽。
onStartDragrow当开始拖拽一行时触发。
onStopDragrow当停止拖拽一行后触发。
onDragEntertargetRow, sourceRow当拖拽一行进入某允许放置的目标行时触发,返回 false 则取消放置。
onDragOvertargetRow, sourceRow当拖拽一行在某允许放置的目标行上时触发,返回 false 则取消放置。
onDragLeavetargetRow, sourceRow当拖拽一行离开某允许放置的目标行时触发。
onBeforeDroptargetRow,sourceRow,point当一行被放置前触发,返回 false 则取消放置。
targetRow:放置的目标行。
sourceRow:拖拽的源行。
point:指示放置的位置,可能的值:'append'、'top' 或 'bottom'。
onDroptargetRow,sourceRow,point当一行被放置时触发。
targetRow:放置的目标行。
sourceRow:拖拽的源行。
point:指示放置的位置,可能的值:'append'、'top' 或 'bottom'。

方法

该方法扩展自树形网格(treegrid)。

名称参数描述
enableDndid启用行的拖拽与放置。
'id' 参数指示要被拖拽与放置的行。
如果该参数未指定,则拖拽与放置所有行。

下载 jQuery EasyUI 实例

jquery-easyui-treegrid-dnd

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文