Questions tagged [sencha-touch]

Sencha Touch is a multi mobile device JavaScript library based on HTML5 and the Model, View, Controller pattern. It is a product of Sencha Inc.

Sencha Touch is a multi mobile device JavaScript library based on HTML5 and the Model, View, Controller pattern. It is a product of Sencha Inc.

Sencha Touch 1.1.1 supported platforms

  • Apple iOS 3+
  • Android 2.1+
  • RIM Blackberry 6+

Sencha Touch 2.0 supported platforms

  • Android 2.3+, 4.03
  • iOS 4, 5.
  • BlackBerry 6+

Resources

Latest stable release

Licensing

  • Free Commercial License
    • Includes minor updates but excludes major updates and patch releases.
    • According to the FAQ, selling an SDK or application designer based on Sencha Touch requires a paid OEM license.
  • GPL v3
4732 questions
1
vote
1 answer

Sencha cmd sever error: Aliased resource:

With random files I am getting this error from the Sencha cmd Server: [WRN] Aliased resource:…
now_world
  • 940
  • 7
  • 21
  • 56
1
vote
1 answer

How to reverse an Axis in Sencha ExtJS Charts?

I have a line chart with x Axis being numeric and y axis being numeric as well. I want the y axis to be reversed so that higher values are at the bottom of the axis and lower values at the top. I looked at the API Docu and didnt find a config to…
StaticBug
  • 557
  • 5
  • 15
1
vote
0 answers

Delay Sencha Touch app.js being loaded in native build

We use Cordova to make a native app from Sencha Touch, and at present I have run into a problem. The application in question is localised to 26 different european markets. In the JS we use localised copy in the config objects of our views for…
Rick
  • 186
  • 2
  • 7
1
vote
0 answers

Sencha Touch JsonP Request TypeError Ext.data is undefined

at the moment I'm working on my first Sencha Touch Application and I run into a problem I spent lots of hours until now. I tried to get the value from a cross domain Json to fill a nested list in my application. When I run my code in browser…
sewi22
  • 33
  • 4
1
vote
0 answers

Icons not showing up with Sencha Touch and Cordova for Windows 8

I have a fresh brand new install of Sencha Touch using Sencha CMD and I copied it to my web server, looks good. I then bundled it in to a Cordova application within Visual Studio and the icons don't seem to be working. I see a letter "H" and an "R"…
Playforward
  • 560
  • 2
  • 6
  • 21
1
vote
4 answers

Sencha 2.4.1 - List Not Displaying Items

I am trying to populate a list with static data in store, using Sencha touch 2.4.1. One main view contains the titlebar and the list. The list is trying to get the data from the store based model, Employee. Following are the code snippets, I cannot…
1
vote
1 answer

submitting a form to the server as json

I am trying to submit a form to the server with the params in JSON. form.submit({ url:'JSONSaveEntry', method:'POST' }); but it sends everything as form-www-urlencoded. I already checked that no field has isFile set to true (but then, it would…
Alexander
  • 19,906
  • 19
  • 75
  • 162
1
vote
1 answer

How to build Existing Sencha touch application using Cordova / Phonegap?

i am new to sencha touch and cordova. So please help me to build a mobile app using Sencha touch 2 and Cordova. My Problem : Sencha Touch Mobile application using multiple Sencha Application within workspace.Now i want to build Sencha app for…
1
vote
0 answers

Empty platforms folder after cmd prompting [Phonegap] Attempting PhoneGap local run for android

I have designed some pages with sencha touch, my cmd version is 5.0.324 and the phonegap version that I'm using is 3.5.0-0.21.14. The problem that I'm currently facing is after the cmd prompts: [Phonegap] Attempting PhoneGap local run for…
user3901456
1
vote
0 answers

Dependency issue with Sencha production build

I encounter a problem with this code: console.log('Before define Foo.Bar'); Ext.define('Foo.Bar', { requires: [ 'Foo.Some' ], singleton: true, constructor: function () { console.log('Foo.Bar constructed'); …
Guid
  • 2,137
  • 2
  • 20
  • 33
1
vote
1 answer

How to get device language in sencha touch or architect

I am developing an app for IOS & Android with Sencha and I was wondering how to retrieve the language the device (regardless of the os) using Sencha touch or architect. Is this possible? Thanks :)
1
vote
1 answer

Sencha Touch 2: Ext.field.Number set specific Decimal Separator like ","

Ext.field.Number is allowing . (dot) as a decimal separator. Can we specific other Decimal Separator like "," ? Explanation: Ext.field.Number field allow to put . (dot) as a decimal separator. so 12.34 is valid number but on some culture ","…
Posto
  • 7,362
  • 7
  • 44
  • 61
1
vote
1 answer

SENCHA TOUCH Dynamically Rest Api

I can send parameters to RestApi web services. But i can't send parameters dynamically. I need one textfield and button. Here is my app.js Ext.application({ name: 'Hello', models: [ 'GreetingModel' ], stores: [ 'GreetingStore' ], …
1
vote
3 answers

How to destroy all the components in sencha touch application

am using Senchatouch for my mobile application and am want destroy all my components of the application and refresh the application
1
vote
1 answer

Is it possible to drag and drop columns in sencha touch grid

I would like to know, is it possible to drag and drop columns of Sencha touch grid. If yes, anybody can point me to any working example?