Now that ST2 PR4 is out... does sencha.io work with sencha touch 2.0 PR4?
Someone out there using IO with PR4?
Now that ST2 PR4 is out... does sencha.io work with sencha touch 2.0 PR4?
Someone out there using IO with PR4?
We have not yet released an updated SIO SDK beta that targets ST2 PR4.
But, we are tracking the progress of ST2 and we will be releasing an update for SIO.
John
Which (next) Sencha Touch-Release will work with Sencha.io?
We are going to have to release an updated SIO for ST2. It won't be for ST2 PR4 though. It'll be for ST2 Bn, where n>2, or for ST2 GA. We're working on it.
John
The next release of SIO, which works with ST2, is currently being tested.
John
Good news
I'm trying to integrated to my sencha touch 2 project but i don't how to import it.
I tried this in app.js
But i'm getting this error message : Uncaught TypeError: Cannot call method 'substring' of undefinedCode:Ext.Loader.setPath({ 'Ext': 'sdk/src', 'Ext.io': 'sdk/io/src' });
You can configure the dynamic loader to pick up the Ext.io classes on demand.
We put SIO in the ST2 app at ~/lib/io, and then we set these paths on the loader.
Ext.Loader.setPath({
'Ext': 'sdk/src',
'Ext.io': 'lib/io/src/io',
'Ext.cf': 'lib/io/src/cf'
});
John