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

Converting Sencha Touch 2.4 Store Data into JSON

I have a WebAPI endpoint that accepts some JSON objects as the parameter and returns a collection of other data. Here is a working request: POST http://mylocalmachine/api/Search Accept: application/json Content-Type:…
Phil Cazella
  • 854
  • 5
  • 11
1
vote
1 answer

Sencha Touch: How to build a restful proxy url syntax?

Defined as a model and its associations, I wish the http calls to follow best practices of restful. For example, if I make the call user.posts(); I wish to run a call http defined as users/1/posts If a call is then put on post with id 32 then the…
Giuseppe Toto
  • 205
  • 3
  • 9
1
vote
1 answer

Sencha touch 2: Making changes to framework source

I'm attempting to make changes to Sencha Touch's javascript source to increase scrolling performance. What's the standard practice for this? I've tried changing the source in my workspace/touch/resources/src or straight up changing the…
Autonomy
  • 402
  • 4
  • 13
1
vote
1 answer

How to get crash reason, if it is crashing from URL opened in iframe in Webview in iOS?

URL opened in cordova project in iframe, is causing crash on iOS 7.
1
vote
0 answers

Sencha CMD not started

I downloaded Sencha Architect and Sencha CMD, but I can't run Secnha web server. I start it in my command line, then I see this: Can anyone help?
Ely ILiyn
  • 11
  • 1
1
vote
1 answer

Sencha Touch - App watch sass

Since compass no longer works with the latest version of Sencha Touch, I looked for a way to compile my sass and I found sencha ant sass does the trick. But I found that executing the command each time I changed my sass was a bit annoying so I found…
Mehdiway
  • 10,337
  • 8
  • 36
  • 68
1
vote
1 answer

Add parameter to success callback for ext.ajax request in sencha touch

In the following code snippet I wish to access the function parameter url1 in the success callback. Is is possible to set the scope of Ext.Ajax.request to the function scope rather than the class scope? Ext.define('Venus.controller.LightNode',…
mr_js
  • 949
  • 12
  • 29
1
vote
2 answers

how to save state of the radiofield in sencha touch

I am developing an app which shows multiple choice questions to the user (radio buttons). Example: There are 10 questions. The user selects the 1st,3rd and 4th question, so that a total of three questions are answered. The user goes back to the…
Sumit Kesarwani
  • 563
  • 2
  • 4
  • 22
1
vote
1 answer

Display math symbols in Ext.js / Sencha Touch

I'm looking for a way to display math symbols and equations (coming from Latex e.g.) in Ext.js / Sencha Touch UI-Components (specifically buttons and textfields). I grasp that "ext.draw.component" might be a good starting point to develop something…
uncl3t0m
  • 21
  • 2
1
vote
2 answers

What is a proper way to load data into a form with comboboxes?

Sencha recommends to avoid manual loading of data into a form and use loadRecord instead. But if there are combos in the form, what happens is that valueField is inserted into the text area, instead of displayField. One would think that the…
jayarjo
  • 16,124
  • 24
  • 94
  • 138
1
vote
2 answers

What is the point of config property on components in ExtJS/Sencha Touch?

Consider the code like this and notice the config property. Ext.define('TouchTomatoes.view.WelcomeOverlay', { extend: 'Ext.Panel', xtype: "main", config: { cls: "welcomeOverlay", html: [ "
jayarjo
  • 16,124
  • 24
  • 94
  • 138
1
vote
1 answer

How to visualize Associated models in Sencha App inspector

I have a question about the "sencha app inspector" extension. (chrome) Is it possible to see the associated models inside a store? I can see the main model but not the associated models. If it is possible, how can I find them?
inane
  • 626
  • 10
  • 26
1
vote
1 answer

I'm using Sencha Cmd to compile an APP with and error that I can't understand

I'm trying to compile a Sencha Touch APP in iOS environment but I got this error message that I could not understand. I though it was related to conflict file but it is not. The message is not clear. If somebody has got this message before I'll be…
1
vote
1 answer

sencha touch list tpl event reference

In my list view, I put addEventListener( alias on) in my initialize event initialize: function (component) { component.element.on({ tap: { scope: this, fn: 'onTap', delegate:…
icese7en
  • 142
  • 1
  • 10
1
vote
1 answer

How to add an image in textfield in sencha touch

I want to add a small image in the text field in sencha touch. For example a small user icon in the username text field.
user2842237
  • 57
  • 10