-
22 Nov 2012 12:50 AM #1
Unanswered: Ext.field.Toggle (2.1) change event not work
Unanswered: Ext.field.Toggle (2.1) change event not work
I download "sencha-touch-2.1.0-gpl" and use Ext.field.Toggle.
The change event not work.
I found the newValue in "change(me, newValue, oldValue, eOpts)" is always true, but i can use eOpts parameter to check selection. So the sample code in http://docs.sencha.com/touch/2-1/#!/...t.field.Toggle is fail to work.Last edited by YoyoLiu; 22 Nov 2012 at 1:01 AM. Reason: i found something
-
23 Nov 2012 12:57 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,107
- Vote Rating
- 453
- Answers
- 3155
It works for me:
Code:Ext.Viewport.add({ items : [ { xtype : 'togglefield', label : 'Test', listeners : { change : function () { console.log('change'); } } } ] });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