-
13 Dec 2011 4:51 PM #1
Ext.Msg.alert and Ext.Msg.confirm INOP
Ext.Msg.alert and Ext.Msg.confirm INOP
Version: Sencha Touch [PR3]
Browser: Mac Safari & Chrome
DOCTYPE: !DOCTYPE html
Description: Properly formatted Ext.Msg.alert and Ext.Msg.confirm instructions fail with the Console message TypeError: 'undefined' is not an object
Steps taken to Reproduce: First encountered error in code segment I'm working on; then ran a simple test with Ext.Msg.alert and Ext.msg.confirm in an index.html. Both failed with same diagnostic message.
Expected results: Display of Ext.MessageBox(es)
Test Case:Code:<!doctype html> <html> <head> <meta charset="utf-8"> <title>TestR01</title> <link rel="stylesheet" href="../../touch/resources/css/sencha-touch.css" type="text/css"> <script type="text/javascript" src="../../touch/sencha-touch-debug.js"> </script> <script type="text/javascript"> Ext.setup({ onReady : function() { Ext.Msg.alert('Hello!', 'Hello there from Sencha Touch!', Ext.emptyFn); } }); </script> </head> <body> </body> </html> <<insert working code to reproduce the report >>
-
13 Dec 2011 7:45 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
It seems to work for me in PR3:
Code:<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Sencha Touch 2.x Test</title> <link rel="stylesheet" href="http://st2/resources/css/sencha-touch.css" type="text/css"> <script type="text/javascript" src="http://st2/sencha-touch-all-debug.js"></script> <script type="text/javascript"> Ext.Loader.setConfig({ enabled : true }); Ext.setup({ onReady: function() { Ext.Msg.alert('Hello!', 'Hello there from Sencha Touch!', Ext.emptyFn); } }); </script> </head> <body> </body> </html>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.
Wait! Looks like we don't have enough information to add this to bug database. Please follow this template bug format.


Reply With Quote