-
19 Mar 2012 10:59 AM #1
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)?
-
19 Mar 2012 12:10 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,624
- Vote Rating
- 435
- Answers
- 3106
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.


Reply With Quote