我在容器中有以下内容
{ direction:'vertical',
constraint: {
min: { x: 0, y: 0 },
max: { x: 0, y: 338 }
},
listeners: {
drag: function( draggable, evt, offsetX, offsetY, eOpts ) {
console.log( offsetX);
// Ext.getCmp("twitterList").setTop(10);
}
}
}
我希望以某种方式改变被拖动的容器的位置,以便从下到上显示动画?
尝试使用setTop但不起作用。任何帮助都非常感谢。感谢
答案 0 :(得分:1)
试试这个,
Ext.get("twitterList").setTop(10);