1. #1
    Sencha User
    Join Date
    Jul 2011
    Location
    Holland
    Posts
    55
    Vote Rating
    1
    Answers
    2
    mrduck is on a distinguished road

      0  

    Default 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:
    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
                }
             },
        }
    });
    To proces the taphold, I need the selected record. I've no idea how to get the correct record. Has anyone an idea? Thanks.

  2. Tried using the getRecord method on the list?

  3. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,684
    Vote Rating
    435
    Answers
    3111
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    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.

  4. #3
    Sencha User
    Join Date
    Jul 2011
    Location
    Holland
    Posts
    55
    Vote Rating
    1
    Answers
    2
    mrduck is on a distinguished road

      0  

    Default


    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);
    
                }
             },
        }
    });