Questions tagged [sencha-touch-2.1]

Sencha Touch is a user interface (UI) JavaScript framework, specifically built for the Mobile Web.

The 2.1 release includes the following key upgrades:

  • significant performance improvements
  • revamped charting components
  • an advanced list component
  • enhanced native support through the Sencha Mobile Packager.

Sencha Touch 2.1 GA is publicly released in November 2012

Documentation

367 questions
29
votes
3 answers

How to run .apk file generated using Cordova on device instead of emulator?

I am using Sencha Touch 2.3.1 for developing cross platform application and to deploy it to native platforms I am using Cordova 3.3.0 I followed this tutorial. Following the tutorial I was able to run the .apk file in the emulator. Now I want to…
user3213851
  • 1,068
  • 2
  • 12
  • 24
8
votes
1 answer

How to use linkedin API using sencha touch

I want to integrate login using linkedin API, How can we using linkedin Oauth using sencha touch 2.1.1 ?
Riz
  • 9,703
  • 8
  • 38
  • 54
7
votes
4 answers

Sencha: How to trigger click event on li element

I've been unable to figure out how to manually fire DOM events. Here, for example, is my attempt to fire the "click" event for a li Ext.DomQuery.select('#mapRoutesPanel ol li:nth-child('+(index+1)+')')[0].click(); It's working fine on google…
user1812198
  • 121
  • 1
  • 4
6
votes
4 answers

How can I get the active tab index in tab panel?

How can I get the active or selected tab index in tab panel in sencha touch? I am using tabpanel in my application.
user386430
  • 4,837
  • 13
  • 41
  • 45
6
votes
3 answers

Sencha Cmd Unable to locate 'app.dir' config property from sencha.cfg

I have built a sencha touch app using Sencha touch 2.1.0 and now I am trying to build it using instructions provided here : http://cclerville.blogspot.in/2013/01/sencha-touch-21-phonegap-220-android_3.html but the build is failing with this error…
ThinkFloyd
  • 4,981
  • 6
  • 36
  • 56
6
votes
7 answers

Generate a sencha touch app

I am trying to create a new sencha touch app using "sencha generate app MyApp ../MyApp" command on Windows. I have done the following : Downloaded the latest sencha SDK and extracted it in folder "D:\MyProjects\sencha-touch-2.1.0-gpl"…
Prashanth
  • 2,404
  • 1
  • 17
  • 19
5
votes
1 answer

Sencha Touch 2 - Execution sequence

Does anyone know or is aware of an article about the function execution sequence in sencha touch 2 ? I think would help us, beginners, alot to know where to place our code. So I would like to know things like, what functions are called automatically…
Marius.C
  • 700
  • 6
  • 14
5
votes
1 answer

Re formatting JSON data to fit into tree store

I want to make Nested list of shopping categories using data provided by server which looks something like this: { "status":{"statusCode":15001}, "data":[ {"itemId":1, "name":"Men", "subCategories":[ {"itemId":2,…
ThinkFloyd
  • 4,981
  • 6
  • 36
  • 56
5
votes
2 answers

Global variable sencha touch 2.1

Hi I need to define a global variable to use in anywhere of my application. I declare a global variable baseUrl in my app.js. Please see below app.js // Ext.Loader.setPath({ 'Ext': 'touch/src',//Location of the sencha touch source…
user998405
  • 1,329
  • 5
  • 41
  • 84
5
votes
1 answer

How to create complex dataitem in Sencha touch 2.1?

I want to create dataitem in a list which looks like this: but I am unable to render middle vbox section with 3 components. I am following this example : http://www.sencha.com/blog/dive-into-dataview-with-sencha-touch-2-beta-2/ This is how I am…
ThinkFloyd
  • 4,981
  • 6
  • 36
  • 56
5
votes
1 answer

Update Sencha Architect project from Sencha Touch v2.0.x to Sencha Touch 2.1.x

I have a project based on Sencha Touch v2.0.x, I was working on it in Sencha Architect 2.0. Now I have updated Sencha Architect to 2.1 and want to update my project to use Sencha Touch 2.1.x. How can I do that? Is there some kind of converter?
4
votes
3 answers

How to get value form record in sencha touch

I am trying to get value from nested json, but unable to get value. I have following data structure. Here I am printing record. What i did. onWordTap: function(view, index, target, record, event) { var wordName=record.get('name'); …
user1391869
4
votes
1 answer

What is the use of callParent

I have gone through this online tutorial to understand basic concepts of Sencha touch. Now, I am sure that I can look forward to begin coding for the real project with my knowledge. But I have a question about the functionality of…
Mr_Green
  • 40,727
  • 45
  • 159
  • 271
4
votes
2 answers

how to give dynamic axes minimum and maximum values to chart from store sencha touch

I am using xtype:chart and this is my axes. axes: [{ type: 'numeric', minimum: 0, position: 'left', fields: ['2011', '2012', '2013'], title: 'Sales', minorTickSteps: 1, grid: { odd: { …
4
votes
0 answers

cordova_plugins.json not found

I am using Sencha Touch 2.1 with PhoneGap 2.7.0 so that I can package it for iOS. The app loads fine until I package it with Sencha CMD by running sencha app build package. In both the regular and package version in the javascript console I see…
vLamp
  • 59
  • 1
  • 5
1
2 3
24 25