UberGrid Installation
Posted: Thu Jun 06, 2013 7:47 pm
Hi guys,
I've been trying to get the licensed version working with Sencha touch, any help would be appreciated.
Sencha Touch version - 2.1.1
Ubergrid version - 1.0.3
Folder structure - Changes I've made so far -
1. Configured loader path in app.js
2. Added ubergrid src in app.json
3. Added ubergrid src files in index.html
There is no code to utilize the functionality of ubergrid in the app yet, this is the error received when trying to load the ubergrid source
Thanks
I've been trying to get the licensed version working with Sencha touch, any help would be appreciated.
Sencha Touch version - 2.1.1
Ubergrid version - 1.0.3
Folder structure - Changes I've made so far -
1. Configured loader path in app.js
Code: Select all
// <debug>
Ext.Loader.setPath({
'Ext' : 'touch/src',
'UberGrid': 'ubergrid',
'MarketAnalyzer' : 'app'
});
// </debug>
Code: Select all
"js": [
{
"path": "touch/sencha-touch-all-debug.js",
"x-bootstrap": true
},
{
"path": "ubergrid-all-debug.js"
},
{
"path": "app.js",
"bundle": true, /* Indicates that all class dependencies are concatenated into this file when build */
"update": "delta"
}
],
Code: Select all
<!-- The line below must be kept intact for Sencha Command to build your application -->
<script id="microloader" type="text/javascript" src="touch/microloader/development.js"></script>
<script src="touch/sencha-touch-all-debug.js" type="text/javascript"></script>
<script src="ubergrid-all-debug.js" type="text/javascript"></script>
There is no code to utilize the functionality of ubergrid in the app yet, this is the error received when trying to load the ubergrid source
Thanks