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
9
votes
7 answers

sencha touch and charts

Has anyone been able to incorporate Charts and graphs into Sencha Touch? If so, an example would be appreciated. Thanks
femi
  • 974
  • 2
  • 13
  • 44
9
votes
5 answers

Turning Sencha Touch-based app into a true native iPhone app?

As I understand, Sencha Touch is just a javascript library that lets you create websites that respond to multitouch and other features you find in native iPhone apps. So... Your end result is accessed on Safari on the iPhone, and not as a native…
ina
  • 19,167
  • 39
  • 122
  • 201
9
votes
1 answer

Sencha touch/cordova app randomly crashes on startup in ios8

My app is written with sencha touch 2.4 and uses the latest version of cordova. Since iOS8 I have an issue with the app randomly crashing. It only happens if I completely close the app, and only sometimes. The crash appears to happen directly after…
Jarle Hansen
  • 1,993
  • 2
  • 16
  • 29
9
votes
2 answers

Align items vertically in a center - Sencha Panel

I am trying to align mid of the screen of an item simply a label but it is aligning it horizontally not vertically. var panel = new Ext.Panel({ layout:{ type: 'vbox', align: 'center' }, items:[ { …
sohail.hussain.dyn
  • 1,411
  • 1
  • 16
  • 26
9
votes
2 answers

Set value of numberfield without firing "change" event in Sencha Touch

I have a numberfield and a list in Sencha Touch. When I click on an item in the list, I am doing an AJAX request to send data to the server. However, if there is data in the numberfield, I want to clear that when the list is clicked on. I have no…
bnrq
  • 171
  • 1
  • 1
  • 10
9
votes
3 answers

Ext.Ajax.request sending OPTIONS request cross-domain when jQuery.ajax sends GET

I have a Sencha Touch application calling my web service cross-domain using Ext.Ajax.request. As I have built the web service I've enabled it to access cross-domain requests. However Ext sends an OPTIONS request first as a handshake then a GET…
Mark Clancy
  • 7,831
  • 8
  • 43
  • 49
9
votes
6 answers

Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: widget

Here is a simple view that i want to instantiate : Ext.define('myapp.view.Home',{ extend 'Ext.Panel', xtype : 'testpanel' , config: { title:'home', iconCls:'home', cls : 'home', html: [ '

user1203861
  • 1,177
  • 3
  • 15
  • 19
8
votes
1 answer

Sencha: How to break out of Ext.each

Can anyone show me how to break out of a Sencha Ext.each loop?
frosty
  • 21,036
  • 7
  • 52
  • 74
8
votes
1 answer

direct canvas panning with raphael.js

i'm trying to do an app that when u click outside a figure it let you pan the viewport using setviewbox(); i have done something close to it, but i'm not pleased with it, i'm using a rectangle: canvas = new Raphael(0,0,canvas_size, canvas_size);…
user979383
  • 81
  • 3
8
votes
2 answers

Handling 404 exceptions in Sencha touch Store with an ajax proxy

I'm trying to make my code a little more robust, by handling all sorts of exceptions that may occur. One may be a 404 exception on a Json web request. It looks like the callback method of store.load isn't called when the Json request gets a 404…
SanderS
  • 93
  • 1
  • 6
8
votes
1 answer

Difference between doLayout() and doComponentLayout() in Sencha Touch?

As the title says, what is the difference between calling doLayout() and doComponentLayout() for a component in Sencha Touch? I tried having a look at the documentation, but it did not clearly explain this.
Nicodemuz
  • 3,539
  • 2
  • 26
  • 32
8
votes
6 answers

The Best tool for building Sencha (Ext JS) applications are?

I started working on Ext JS, but the building process has always been a headache to me as I always used notepad.. Can you suggest some tools which help me build the Ext JS applications easily....
Prateek Raj
  • 3,966
  • 6
  • 39
  • 50
8
votes
1 answer

Sencha Touch 2: itemtap on IE not targeting divs

I'm working on a Cordova hybrid app and currently facing issues on Windows 8.1 with Sencha Touch 2. I got a some divs on a listitem with some subelements. I defined a tap listener. This works fine with Android and IOS, but this doesn't work on…
8
votes
2 answers

Sencha Touch over jquery Mobile

What is main feature of Sencha Touch over jQueryMobile I don't understand. as per my knowledge about this two technology: 1) jQueryMobile have very simple data attribute feature for design app for cross mobile platform but as compare to Sencha…
anomepani
  • 1,796
  • 2
  • 25
  • 34
8
votes
1 answer

javascript + phoneGap - how to detect when in an active phone call

I searched for this question and it's a question that has remained unanswered, I was wondering if anyone could help to figure this out... Using javascript libraries and phonegap, I would like to place a phone call and when the call is answered play…