-
19 Dec 2012 7:09 AM #1
Answered: Get record by element in List ("taphold" listener in list)
Answered: Get record by element in List ("taphold" listener in list)
I want to create a taphold listener to a List. It's impossible to do this directly on a listitem, but it's possible on the underlying element like this:
To proces the taphold, I need the selected record. I've no idea how to get the correct record. Has anyone an idea? Thanks.Code:this.myList = new Ext.List({ store: store, grouped: true, indexBar: true, onItemDisclosure: true, emptyText: 'its empty', itemTpl: template, listeners: { taphold: { element : 'el', fn: function(event, e) { console.log('taphold'); // action } }, } });
-
Best Answer Posted by mitchellsimoens
Tried using the getRecord method on the list?
-
21 Dec 2012 8:06 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,624
- Vote Rating
- 434
- Answers
- 3106
Tried using the getRecord method on the list?
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
28 Dec 2012 4:31 AM #3
Yes, thank you that's right. I need to go two levels up, then it's able to get the right record based on the element. Great!
Code:this.myList = new Ext.List({ store: store, grouped: true, indexBar: true, onItemDisclosure: true, emptyText: 'its empty', itemTpl: template, listeners: { taphold: { element : 'el', fn: function(event, e) { console.log('taphold'); var element = e.parentElement.parentElement; record = bbs.views.companyListView.companyList.getRecord(element); } }, } });


Reply With Quote