Hi there,
I tested my code with "sencha web start", it works fine. I can see my carousel component and the items in the List.
then I did the following commands:
1. sencha cordova init...
Type: Posts; User: franva
Hi there,
I tested my code with "sencha web start", it works fine. I can see my carousel component and the items in the List.
then I did the following commands:
1. sencha cordova init...
Since Sencha CMD 5.X, the package.json and cordova.local.properties are not required anymore.
I created my app by following this article:
...
Hi guys,
I am using Sencha CMD 5.1.0.26 and Sencha Touch 2.4.0.
Steps I did:
1. sencha -sdk /senchapath generate app MyApp MyApp
2. cd MyApp
3. sencha cordova init com.test.MyApp
Yes, I saw it. I thought there would be some new themes for iOS 8.1/8
Hi there,
I checked the Kitchen Sink example and it seems that there is no new theme for iOS 8.1/8.
Does anyone have any idea?
Thanks
Now, it's 2014 July. Has 2-way data binding been implemented in Sencha Touch?
No. u?
Hi fmodseley, I did, nothing happened.
I inspected the Sencha console Component panel in the generated Cordova project and found the menu component wasn't even there.
Hi there,
I found that if I dynamically create a menu inside initialize event on a TabPanel, the menu will not be created/added in generated Cordova project.
A workaround is I put the menu...
Hi,
Have you found the reason?
I am facing the same problem.
My code :
mystore.on('addrecords', function(store, records, eOpts) {
console.log('new recorded have been added.');
console.log('new recorded number = ' +...
I am trying to add a self-destroy function in a custom component. But it simply doesn't work.
Here is my code:
Ext.define('NoiseComponent', {
extend: 'Ext.Component',
xtype:...
Found it, it adds new records at the end of the collection.
addRecords: function (store, records, eOpts) { //eOpts carries all sensor stations
this.add(records);
Where does the this.add(records) method add the records to? At the end of the data in...
Hi fmoseley,
Please see my updated question, I think it will make what I want to ask more clear.
Thanks
I tried to do this under the sencha touch root project folder:
cordova plugin add xxxx
It shows : Current working directory is not a Cordova-based project.
I think my red color highlighted...
Hi fmoseley,
Thank you for your reply.
Yes, I did many google researches, but all I found are similar to each other:
1. use (for example)
cordova plugin add org.apache.cordova.device
2....
Why no one has commented on my question? Are there anything wrong with my question??? Any corrections, advice are welcome.
Hi there,
Yes, I saw titlebar on it. And here is my updated code:
TripListView:
Ext.define('MyAccountant.view.TripList', {
fullscreen: true,
requires:...
Hi fmoseley,
Thank you for your reply.
Here is my updated code, it works on laptop(Chrome) as well as on Android phones, but the list doesn't show in Windows Phone 8.
...
Hi,
Thank you for your explanation :)
Beside downloading the entire sdk, can we use npm to install or update the Sencha Touch?
If yes, where can I find the document?
Thanks :)
I am about to add some plugins into my cordova project. But the cordova project is generated by Sencha Touch 2.
So if I added a plugin under cordova,
How could I use cordova plugins in Sencha...
It seems that the Sencha Touch V 2.3.2 is still unavailable, although it's visible on the documentation.
Sorry, I've just updated the code to make it readable.
I have a view, model and store :
Ext.define('myApp.view.TripList', {
fullscreen: true,
extend: 'Ext.Container',
xtype: 'TripListView',
store: 'TripStore',
...