1. #1
    Sencha User
    Join Date
    Apr 2012
    Posts
    8
    Vote Rating
    0
    gevjen is on a distinguished road

      0  

    Default Sencha Touch - Minify - variable rename

    Sencha Touch - Minify - variable rename


    Prior to minifying my sencha touch application I get it to work beautifully - all the pages load correctly, my mvc calls are all working and the mock data that I have all load correctly.

    Then when I minify it I get errors on every page it seems. My issue now is that when i get to a detail view of a customer for example I am getting no data. Prior to minifying my project

    var _form = Ext.getCmp('accountDetailView');
    _customer = _form.getRecord();

    i would get this _form variable and I would load the customer data. then display the results after an ajax call.

    Now i get this in my minified file.

    _customer=a.getRecord();

    Where I now have a variable 'a' - which for whatever reason always leaves my _customer variable as null.

    I am minifying this project by running this in the command line
    sencha app build production

    then taking the files out of the build folder and putting them on my webserver.

    I couldnt be more frustrated with trying to minify this project - any help is appreciated.

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


    Are the variables in the same function?
    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