sencha-touch-2

PhoneGap 1.4 wrapping Sencha Touch 2.X - What about performance?

时光毁灭记忆、已成空白 提交于 2019-11-27 11:29:26
I'm building a multiplatform tablet app wrapping it with Phonegap 1.4 using just its webview, then I work my magic with the Sencha Touch 2 framework. By multiplatform I mean iOS 5.X+ and Android 3.0+ (for now). This app is working great so far, all its features work on both systems but... On the Android tablet (Samsung GalaxyTab) its really slow. What's happening? Can I do something about it, or its just android's limit? Thanks Ricardo Perre: http://edgecodetechology.blogspot.pt/ ****EDIT**** (I'm trying to make this post somewhat useful to sencha community) Sencha Touch, like many other

How to get value form record in sencha touch

偶尔善良 提交于 2019-11-27 07:08:15
问题 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'); console.log("Word--->>>>"+wordName); console.log(record); }, but i get in console like this:-> Word--->>>>undefined I have tried this also: var wordName=record.data.get('name'); but getting Uncaught TypeError: Object # has no method 'get' my JSON looks like this:

Registry key Error: Java version has value '1.8', but '1.7' is required

狂风中的少年 提交于 2019-11-27 06:28:37
While running sencha app build production I am getting the following error: Error: Registry key 'Software\JavaSoft\Java Runtime Environment'\CurrentVersion' has value '1.8', but '1.7' is required. Error: could not find java.dll Error: Could not find Java SE Runtime Environment. java -version , command is showing following: java version "1.8.0_40" Java(TM) SE Runtime Environment (build 1.8.0_40-b26) Java HotSpot(TM) 64-Bit Server VM (build 25.40-b25, mixed mode) Not able to find where path is going wrong. Any idea? ----------------------- EDIT ------------------------------------------------

Need Help In Sencah Touch 2 Search List

孤人 提交于 2019-11-27 06:27:41
问题 i have problem achieving the exact result i want in building a sencha Search List, i managed to build just a list but the actual result i want is just something like this http://docs.sencha.com/touch/2-0/#!/example/search-list i have followed the example to build something similar, but my serach is not working, hope somebody can give me a detailed answer on how to achive this. below are my codes from my controller to the last. this is my controller Ext.define('List.controller.Main', { extend:

What is the proper way to load an external javascript in Sencha Touch 2

对着背影说爱祢 提交于 2019-11-27 01:53:31
问题 In my development I need to include third part javascripts; like money.js (http://josscrowcroft.github.com/money.js/) What is the best 'clean'/'proper' way to achieve it ? Just include it in index.html ? 回答1: No. Don't directly add the additional javascript files in the index.html file. That is not the recommended way ( though it may work ). Instead, do like this, Include the following line in your index.html . microloader is the folder that is shipped with sencha sdk and contains three files

Sencha Touch 2.0 MVC tutorial [closed]

☆樱花仙子☆ 提交于 2019-11-26 22:37:38
问题 I am very new to Sencha Touch framework, want to start with Sencha Touch 2.0 but not able to find any tutorial showing an application built using MVC Pattern and specifically in Sencha Touch version 2.0. 回答1: Here are two videos from the sencha 2011 conference: SenchaCon 2011: MVC in Depth Part 1 https://vimeo.com/33311074 and SenchaCon 2011: MVC in Depth Part 2 https://vimeo.com/33430731 Also you can check their blog for other short tutorials. Another video to better understand Sencha Touch

Generate a sencha touch app

三世轮回 提交于 2019-11-26 21:23:01
问题 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" folder. Installed the sencha SDK tools in "D:\MyProjects\SenchaSDKTools-2.0.0-beta3" folder. Ensured that the system environment variable "SENCHA_SDK_TOOLS_2_0_0_BETA3" is indeed pointing to "D:\MyProjects\SenchaSDKTools-2.0.0-beta3" As per the sencha

ActiveXObject is not defined and can't find variable: ActiveXObject [duplicate]

亡梦爱人 提交于 2019-11-26 16:15:41
问题 This question already has answers here : ActiveXObject in Firefox or Chrome (not IE!) (4 answers) Closed 5 years ago . i want to create text file in local, when i browse in Google chrome click of the button it is showing error like ActiveXObject is not defined and when i browse in safari click of the button it is showing error like can't find variable: ActiveXObject . any one can help me.how can i achieve and create file .Thanq <script> function createFile() { var object = new ActiveXObject(

PhoneGap 1.4 wrapping Sencha Touch 2.X - What about performance?

穿精又带淫゛_ 提交于 2019-11-26 15:35:49
问题 I'm building a multiplatform tablet app wrapping it with Phonegap 1.4 using just its webview, then I work my magic with the Sencha Touch 2 framework. By multiplatform I mean iOS 5.X+ and Android 3.0+ (for now). This app is working great so far, all its features work on both systems but... On the Android tablet (Samsung GalaxyTab) its really slow. What's happening? Can I do something about it, or its just android's limit? Thanks Ricardo Perre: http://edgecodetechology.blogspot.pt/ ****EDIT****