Unanswered: Minify - select Field no class name when getting name by alias
Unanswered: Minify - select Field no class name when getting name by alias
We are trying to minify our sencha 2 touch application. We used the command line tool (sencha app build production) and now see we have a new sdk folder, new app.js file and some other changes. When I takes these new files and put them on our web server and run our application I am able to get to our login view. When I put in a username and password and click on our Login button we get this error. 'Uncaught TypeError: Cannot call method 'substring' of undefined' when I go into chrome's developer app and set break points I am finding that my select field
This isn't for CSS, this is for the Sencha Touch 2 class. The whole build process binds on the fact that your classes require the classes that it uses to do a build.
requires: [ 'Ext.MessageBox' ], models: [ 'Districts' ], views: ['Main', 'Login', 'Search'], stores: [ 'DistrictStore' ],guessing you are saying that i need some other tools in the requires array?