Table of Contents |
---|
Tree 组件 用户完成元素拖动后触发。
Table 组件 用户完成行拖拽后触发。
event payload:
Code Block | ||
---|---|---|
| ||
{
dragIndex: 11, // 拖拽的行的序号
dragRecord: {}, // 拖拽的行的完整数据
dragTableIns: TableIns, // 拖拽的行所在的Table的实例
hoverIndex: 2, // 拖拽结束放置的行的序号
hoverRecord: {}, // 拖拽结束放置的行的完整数据
hoverTableIns: TableIns, // 拖拽结束放置的Table实例
dragInTableSelf: true, // 是否表格内部拖拽
} |