我想知道是否可以在Sencha touch 2中删除类似iPhone书签功能的短名单。
我搜索了许多sencha touch Q& A但没有找到合适的答案。
此代码使列表可拖动,但仅适用于从上到下。无法将列表底部的任何项目拖动到上方。
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中使用短列表?
答案 0 :(得分:1)
我已经能够使用此示例中的代码执行此操作:https://github.com/kostysh/Drag-Drop-example-for-Sencha-Touch