Hi Mat,
Thank you for your response. I've read your post already. I've also dealt (ie removed) the PullRefresh to accomodate ST2.1, see link. That said, I'm already only using jsonp as ...
Code:
proxy: {
type: 'jsonp',
timeout: 60000, // 1 minute
url: 'http://my.url/getdata',
reader: {
type: 'json',
rootProperty: 'rootSchedule'
}
},
My index.html file looks like
Code:
...
<script type="text/javascript" src="lib/cordova-2.1.0.js"></script>
<script type="text/javascript">
document.addEventListener("deviceready", function () {
console.log("Cordova is loaded");
}, false);
</script>
<script type="text/javascript" src="lib/sencha-touch-all.js"></script>
<script type="text/javascript" src="app/app.js"></script>
...
The contents of my lib directory is only these two files
- sencha-touch-all.js &
- cordova-2.1.0.js
So I have no resources/sass file or reference as this wasn't copied across to my solution. I doubt the problem in my case is that. Note: This setup worked with ST2.0, so I'm thinking that the issue may lie at the core library level. Question is what's changed and how does one fix it.
I've attached an image to show my setup layout.
Screen Shot 2012-11-13 at 2.13.01 PM.png