Kendo ui treeView拖放

时间:2017-06-07 09:48:45

标签: javascript jquery kendo-ui drag-and-drop kendo-treeview

我正在使用Kendo界面TreeView并启用了dragAndDrop选项。当我执行拖放时,节点很好地移动到我的文本中:

function ( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().each( function() { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.textContent = value; } } ); }, null, value, 

下面的图片显示了案例:

拖放之前:

Before

移动节点后

enter image description here

我错过了什么?

谢谢!

0 个答案:

没有答案