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
0 answers

Dynamic series and axes for chart in Sencha touch 2

Create a chart type Line , for him I can load one or more types of series within that graph . More in this case only two series as the link . I did in listeners- > painted to render the graph . The legend carries. but the lines do not appear code of…
1
vote
3 answers

Tap event on textfield in Sencha Touch

I can add tap event to textfield like this: { xtype : 'textfield', name : 'GIVEN_NAME', label : 'Given Name', disabled: false, listeners : { element : 'element', tap : function() { …
1
vote
1 answer

Migrate Sencha Touch app from iOS to Android and Windows

I am a hardcore Android developer new to Sencha Touch, Windows app development and VisualStudio environments. So please bear with the lengthy description of the problem, just did not want to miss any crucial detail. I have received an old Sencha…
1
vote
1 answer

Sencha Touch : invalid item defined

Here I am trying to add a simple toolbar with an embedded button and following these is a list of some items. I want this list to get sorted once i click on sort button. The following is the view code : Ext.define('UtilApp.view.Main', { …
Nataraj
  • 73
  • 1
  • 2
  • 9
1
vote
1 answer

Cyrillic characters in MessageBox class of Sencha Touch

I am working with different languages with the Sencha Touch framework, and translating MessageBox buttons to different languages, I have added it and it is working but with the russian I am having problems, instead of appears the correct translation…
inane
  • 626
  • 10
  • 26
1
vote
1 answer

Store is not loading in Android Lollipop

My app isn't able to load the store in android lollipop version but it's working fine in older versions of android. It doesn't work in lollipop until I require the store in app.js requires:['StoreA','StoreB'] Is there any library that can fix an…
RED.Skull
  • 1,696
  • 3
  • 24
  • 49
1
vote
1 answer

How to create a striped Ext.Dataview

Ext.dataview.Dataview unlike Ext.dataview.List does not have a striped attribute. Is there a straightforward way of simulating that? I've tried using itemTpl in my DataView, but no luck. itemTpl: '' + '
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
1 answer

Get button from dataview on tap in Sencha 2

In my Sencha Touch 2.4.1 application, I have a dataview where each row has some text, and two buttons. In my dataview, I have the following listener: listeners: { itemtap: function(dataview, index, target, record, e) { // for testing …
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
1 answer

Difference between sencha app build -run and sencha app run?

Is there a significant difference between the commands sencha app build -run native and sencha app run native. Looking at the documentation, it looks like run builds the app before running it. Here it says that build -run launches it on the…
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
2 answers

Displaying images in Sencha Touch given digest

My goal is to display an image in Sencha Touch 2. As of now, I'm doing something like this: { xtype:'image', src: 'resources/icons/default_avatar.png', height: 256, width: 256 } In the future, I want to get those images from the…
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
1 answer

Sencha Touch - transitioning to pages

I've been playing around with Sencha Touch 2 and came across two ways of transitioning between pages (e.g. from Home to Login). One way: app.js: launch: function() { var loginPage = { xtype: 'loginview' }; var homePage = { …
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
0 answers

Creating tables in Sencha Touch

I'm trying to create a table in a Sencha Touch 2 + Phonegap application. I'm using PouchDB to fetch data for the table, not a Store - can I get away with that? I did find an example of this, but there's a lot of work that needs to be done to get it…
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
2 answers

Disable Sencha script loader cache busting but only while developing/debugging

I'm working with ExtJS 4.x and Sencha Architect 2.2 but this should be relevant to later versions and any application that uses the Ext.Loader class to dynamically load scripts, including Sencha Touch. By default Ext.Loader adds a ?_dc=... cache…
Glenn Lawrence
  • 2,844
  • 1
  • 32
  • 38
1
vote
1 answer

Calling function when List Group Header Change in Sencha Touch

I want to call a function when the group function is changed when we scroll in list. Thanks
GoalDone
  • 345
  • 1
  • 3
  • 15
1
vote
2 answers

Override Sencha Touch class

I am working in a Sencha Touch application and I have the next doubt/issue with this code. Ext.each(records, function(record){ newItem = Ext.create('Ext.Panel', { material: record.get('material'), cls:…
inane
  • 626
  • 10
  • 26