1. #1
    Sencha User
    Join Date
    Oct 2012
    Posts
    5
    Vote Rating
    0
    oxonfox is on a distinguished road

      0  

    Default Answered: Container Doubletap Issue

    Answered: Container Doubletap Issue


    I have a container that houses all other components in my application. I want to detect 'doubletap' events on that container so I know if the user performs a 'doubletap' at any time during application use. How can I accomplish this? I have already tried adding a listener in the item definition, as well as using the 'on' method. (I could also switch the container for a panel if it works better). The documentation shows it being done with a single 'tap' here: http://docs.sencha.com/touch/2-0/#!/...anel-method-on. Thanks in advance.

  2. The Panel doesn't have a tap or doubletap but the element does. Here is how you can listen to it in the two different ways:

    Code:
    initialize : function() {
        this.element.on('doubletap', 'onElDoubleTap', this);
    },
    
    onElDoubleTap : function(e, t) {}
    and

    Code:
    listeners : {
        element : 'element',
        doubletap : function(e, t) {}
    }

  3. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    34,120
    Vote Rating
    453
    Answers
    3160
    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 mitchellsimoens has much to be proud of

      0  

    Default


    The Panel doesn't have a tap or doubletap but the element does. Here is how you can listen to it in the two different ways:

    Code:
    initialize : function() {
        this.element.on('doubletap', 'onElDoubleTap', this);
    },
    
    onElDoubleTap : function(e, t) {}
    and

    Code:
    listeners : {
        element : 'element',
        doubletap : function(e, t) {}
    }
    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
    Oct 2012
    Posts
    5
    Vote Rating
    0
    oxonfox is on a distinguished road

      0  

    Default


    I've been searching for so long, and this is just what I need! Thanks for the help Mitchell!