Questions tagged [sencha-2]

Sencha Touch 2.1 is the latest version of the market leading mobile app framework. It has improved MVC capability, native bridges, plugins, charts and more.

This release focuses on improving performance and adding features to make developers more productive. The updated list component now supports infinite scrolling, enabling apps to show an unlimited amount of data.

Touch 2+ has improved MVC capabilities, with better inheritance, obfuscated code (during production), better native conversion and more. It has several native plugins that have improved and enhanced its mobile browser capability.

An all-new, ultra high performance version of Charts is included as a part of Touch (available as GPLv3 or as a part of Sencha Complete). Charts now adds retina display support, new financial charts, and improvements to the Draw and Chart packages for expanded flexibility. Finally, Sencha Touch 2.1 provides enhanced native support through the Sencha Mobile Packager, which is now part of the new Sencha Cmd.

To learn more about Sencha Touch 2, visit the official Sencha Touch site

The Sencha Touch 2 Documentation for developers can be found here.

8 questions
1
vote
0 answers

iOS - Sencha Touch - 2

I am really confused between these two command. sencha app build native [INFO] Deploying your application to /path/to/www/mySenchaApp/build/package what is the command is used for? sencha package run packager.json what is the command is used…
user198725878
  • 6,266
  • 18
  • 77
  • 135
0
votes
1 answer

App switching between views

I'm trying to have an app switch between views, depending on whether a user is logged in or not. The app will try to load the main view first, and then in one of the controller's launch functions will swap to the login form if you are not logged…
Kai
  • 3,803
  • 1
  • 16
  • 33
0
votes
1 answer

Sencha 2.0 Native App with Ajax Request

I'm trying to write a native android application using Sencha (no Phonegap) that is able to contact a server with get/post requests. I've gotten the code to the point where it works in a browser, but when I package the app into an .apk and run it…
Kai
  • 3,803
  • 1
  • 16
  • 33
0
votes
1 answer

Sencha Touch 2 Add and Remove textfield inside fieldset

i have strange issue with removing item from fieldset. my app success adding new textfield fieldset item, buth when i do remove() my app screen got stuck without any error on my google chrome. here my source view js Ext.define('qms.view.QC23', { …
user2698904
  • 23
  • 2
  • 8
0
votes
1 answer

Open a new View by clicking a link inside html (button)

Working in Sencha2... How can I open a new View by pressing a link inside html? Something like this: Main.js Ext.define('SkSe.view.Main', { extend: 'Ext.tab.Panel', xtype: 'main', requires: [ 'Ext.TitleBar', 'Ext.dataview.List' ], config: { …
Mladen
  • 1
  • 1
0
votes
1 answer

Error when running build as native Sencha

Mac-mini-2:sink eit$ sencha app build native [INFO] Deploying your application to /path/to/www/sink/build/package [INFO] Copied sdk/sencha-touch.js [INFO] Copied app.js [INFO] Copied resources/css/app.css [INFO] Copied resources/images [INFO]…
user198725878
  • 6,266
  • 18
  • 77
  • 135
0
votes
2 answers

Unable to install app on my iOS device ("unable to install the app" error)

I have created a Sencha sample app using the following command in the terminal: Mac-mini-2:sencha-touch-2.0.0-commercial eit$ sencha app create mySenchaApp /path/to/www/mySenchaApp Then I built that application as native on simulator, which worked…
user198725878
  • 6,266
  • 18
  • 77
  • 135
0
votes
1 answer

How to send data from a list view to a detail view with Sencha?

I have a generic class that extends Ext.dataview.List, and it is currently listing out a set of blogs that I have: Ext.define('Blog.view.BlogList',{ extend: 'Ext.dataview.List', xtype: 'blogList', config: { cls: 'blogList', emptyText: 'No…
johnnietheblack
  • 13,050
  • 28
  • 95
  • 133