Hybrid View
-
20 Apr 2012 2:16 AM #1
which file to use sencha-touch.js or sencha-touch-debug.js or sencha-touch-all.js or
which file to use sencha-touch.js or sencha-touch-debug.js or sencha-touch-all.js or
I am trying a basic demo app with below code...
In index.html, if i useCode:Ext.application({ name : 'MyApp', launch : function () { var MyPanel = Ext.create("Ext.Panel", { html : "Test APP..." }); Ext.Viewport.add(MyPanel); } });
Nothing is rendered on browser screen(Chrome 18.0) In index.html, if i useCode:script src="lib/sencha-touch.js" type="text/javascript" (or) script src="lib/sencha-touch-debug.js" type="text/javascript"
Content is rendered on browser screen(Chrome 18.0) Which JS file should we include in HTML file...? In one of Forum(http://www.sencha.com/forum/showthre...encha-touch.js) Jacky Nguyen advised to use "sencha-touch.js" for Production and "sencha-touch-debug.js" for development... Unfortunately usage of these JS file not working for my code...... Whats going wrong............???? Is there any problem with my code or any problem with JS files...Code:script src="lib/sencha-touch-all.js" type="text/javascript" (or) script src="lib/sencha-touch-all-debug.js" type="text/javascript"
Last edited by mitchellsimoens; 23 Apr 2012 at 6:44 AM. Reason: format code
-
23 Apr 2012 6:45 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
Did you require Ext.Panel to be loaded?
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.
-
24 Apr 2012 6:39 AM #3
I am Sorry Mitchell, I am a newbie to Sencha touch.
Could you please explain me what is meant by the context "require Ext.Panel to be loaded".....?
Is that adding a Panel to Viewport is what you mean or something else.....?
-
24 Apr 2012 7:19 AM #4Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
There are many ways to handle file dependancies. This guide may be of some help http://docs.sencha.com/touch/2-0/#!/...c_dependencies
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