2012-10-20 119 views
0

我已在在下面一個容器煎茶觸摸2可拖動

{ 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但不起作用。任何幫助,高度讚賞。由於

回答

1

試試這個,

Ext.get("twitterList").setTop(10); 
+0

你介意解釋? –