Created
April 20, 2012 19:26
-
-
Save altintx/2431182 to your computer and use it in GitHub Desktop.
Swipe to Delete on Sencha Touch 2.0 list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Assuming: | |
* dataview is a { xtype: "list" } | |
* dataview.itemTpl includes a <div class="deleteplaceholder"></div> | |
* | |
* Delete button will disappear as soon as something is touched | |
*/ | |
dataview.on("itemswipe", function(dataview, ix, target, record, event, options) { | |
if (event.direction == "left") { | |
var del = Ext.create("Ext.Button", { | |
ui: "decline", | |
text: "Delete", | |
style: "position:absolute;right:0.125in;", | |
handler: function() { | |
record.stores[0].remove(record); | |
record.stores[0].sync(); | |
} | |
}); | |
var removeDeleteButton = function() { | |
Ext.Anim.run(del, 'fade', { | |
after: function() { | |
del.destroy(); | |
}, | |
out: true | |
}); | |
}; | |
del.renderTo(Ext.DomQuery.selectNode(".deleteplaceholder", target.dom)); | |
dataview.on({ | |
single: true, | |
buffer: 250, | |
itemtouchstart: removeDeleteButton | |
}); | |
dataview.element.on({ | |
single: true, | |
buffer: 250, | |
touchstart: removeDeleteButton | |
}); | |
} | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi all,
If someone is interested to put buttons on swipe on a list item, i created a plugin for it:
https://github.com/Positive-LABS/SlideActionsPlugin
Hope it helps :)