我正在使用extjs拖动正常工作但不在这里工作是我的代码
draggable : {
insertProxy : false,
moveOnDrag: true,
onDrag : function(e) {
var pel = this.proxy.getEl();
this.x = pel.getLeft(true);
this.y = pel.getTop(true);
var s = this.panel.getEl().shadow;
if (s) {
s.realign(this.x, this.y, pel.getWidth(), pel
.getHeight());
}
},
endDrag: function(e) {
Ext.panel.DD.prototype.endDrag.apply(this, arguments);
console.log('dragend');
},
},
提示:我使用的是通用面板,它的意思是同一个面板,内容多次生成:)