1. #1
    Sencha User
    Join Date
    Nov 2012
    Posts
    4
    Vote Rating
    0
    YoyoLiu is on a distinguished road

      0  

    Default 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

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


    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.

Tags for this Thread