我想知道在 Sencha touch 2 中是否可以像 iPhone 书签的功能一样拖放短列表。
我搜索了许多煎茶触摸问答,但没有找到任何合适的答案。
此代码使列表可拖动,但仅适用于从上到下。无法将任何项目从列表底部向上拖动。
var selEl = dataview.element.down("." + dataview.getSelectedCls());
var d = new Ext.util.Draggable({
element: selEl,
listeners: {
dragstart: function(self, e, startX, startY) {
console.log("test dragStart[" + startX + ":" + startY + "]");
},
drag: function(self, e, newX, newY) {
console.log("test drag[" + newX + ":" + newY + "]");
},
dragend: function(self, e, endX, endY) {
console.log("test dragend[" + endX + ":" + endY + "]");
}
}
});
sencha touch 2 中是否可以有简短列表?