where have you included the winstore-jscompat.js, in the index.html? Can you share your code?
Type: Posts; User: riccardotreagles
where have you included the winstore-jscompat.js, in the index.html? Can you share your code?
I have a sencha touch project. It works succesfully on windows phone. Now i'd like to build a windows app. Can I use the same code or I have to migrate to extjs?
I found the solution. In 'Myclass' I have to declare 'obj' in config{} section. Then to call methods get() and set() to manage 'myobj'
Ext.define('Myclass', {
extend: 'Ext.Container', ...
I have two instances of myclass (myclass is a view) in my controller. The class is the following:
Ext.define('Myclass', {
extend: 'Ext.Container',
alias: 'widget.myclass',
me:null,...
Thank you! It works fine!
Same problem, with carosuel. I'm working with last version.
I have Sencha Cmd v5.1.3.61 and sencha-touch-2.4.1 sdk.
Any solution?
I developed an app with sencha touch, and I published it on windows phone store. I integrated facebook login using inappbrowser cordova plugin. I have also integrated AdMob, the app show an...
I have used cordova plugin inappbrowser + phonegap.facebook.inappbrowser. Download the source from https://github.com/caiovaccaro/phonegap.facebook.inappbrowser
Has anyone built a sencha touch windows phone app with login facebook? I saw cordova plugin but I think it is only for android and ios.
Ok i solved. I added in my app.json this
"builds": { "wp8": {
"packager": "cordova",
"cordova": {
"config": {
...
How can i obtain *.xap file for windows 8?
I followed the guide http://docs.sencha.com/cmd/5.x/cordova_phonegap.html to build my application. But I don't know how i can obtain *.xap file for...
Check the folder permissions.
Yes it is what I want. But if I use this code in my project I obtain the error:
Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: widget.draw
Perhaps the draw...
I'd like a rect sprite.
I'm using sencha touch ver 2.4. Following the docs i created and used this class:
Ext.define('MyApp.MySprite', {
extend: 'Ext.Panel',
initialize:function(){
...
Ok I solved. I added my personal image folder "resources/custom" in app.json file under tag "resources".
Thanks!
The image is local, i use setSrc(imgpath); where imgpath is for example "resources/custom/test.png". I build with cordova and i obtain apk. when i install on device, the image is not showed.
I can create apk file using cordova. In chrome,app load image. But in device,app doesn't show image. I used the xtype image and assigned src property, but the problem appens also with html tag. Can...
I have not resized the image, but in the s3 and s4 smartphone the image autosize according the toolbar default height. in the tablet no. (I built the app with cordova)
But now i forced the size,...
I'm developing a sencha touch 2.x app. I have an image xtype in toolbar and a panel with a button:
items:[
{
docked: 'top',
xtype:...