1. #1
    Sencha User
    Join Date
    Feb 2012
    Location
    New York, NY
    Posts
    52
    Vote Rating
    2
    Answers
    1
    roycyang is on a distinguished road

      0  

    Default Unanswered: Tap or Focus event for selectfield and using native select

    Unanswered: Tap or Focus event for selectfield and using native select


    I have a selectfield that I would like to do some changes to when a user taps on it. I see the events in the API and there isn't a way to do a:

    Code:
    listeners: {
        focus: function(list, opts) {
            console.log('on tap');
        }
    }

    On a selectfield. I know there's a change event for when someone has finished making the selection.

    Also, is there a way to override the Sencha selectfield dropdown and just use the device's default (in this case, the iPad's)?

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,624
    Vote Rating
    435
    Answers
    3106
    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


    You want a tap event to fire:

    Code:
    listeners : {
        element : 'element',
        tap : 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.