Search Type: Posts; User: DreadyCoder
Search: Search took 0.03 seconds.
-
15 Jun 2012 4:45 AM
- Replies
- 11
- Views
- 1,948
well, for good measure then, make sure dev and build use same version :)
-
15 Jun 2012 2:42 AM
- Replies
- 11
- Views
- 1,948
the java exceptions are about invalid version numbers.
My suggestion is to check if you give the right variables in the following 3 files
(these are (redacted) examples from my code)
app.js
... -
12 Jun 2012 12:59 AM
- Replies
- 11
- Views
- 1,876
i circumvented it by placing the missing files in the build dir, doh
-
12 Jun 2012 12:52 AM
- Replies
- 5
- Views
- 1,288
did you start the project as a Android project and not as a javascript project ?
are all your sencha /app/ files in the /assets/ folder ?
if so: right-click your project in the bar to the left... -
11 Jun 2012 6:54 AM
- Replies
- 6
- Views
- 1,587
@hjeDK
you might want to test with an iphone (if that's in your target audience range) , iOS is *very* date object sensitive.
i overrode the store's transformCoreData to work-around the issue... -
11 Jun 2012 6:44 AM
Jump to post Thread: Problem in deploying iPAD app by DreadyCoder
- Replies
- 2
- Views
- 515
you may wanna set your ipad to developer mode, it will (maybe) tell you the issue. (uninstantiated variables have a bad habit of showing up in that log unnamed, and not linenumbered)
... -
11 Jun 2012 6:21 AM
Jump to post Thread: How to unit test a ST2 app? by DreadyCoder
- Replies
- 7
- Views
- 1,829
use Jasmine, it can be automated (i hear), but i just run it once before i commit/push to git
example
describe("Basic Assumptions", function() {
it("has Sencha Touch 2 loaded",... -
11 Jun 2012 6:14 AM
- Replies
- 2
- Views
- 305
yes
var x = foo <== local scope
x = foo <== global scope -
11 Jun 2012 6:10 AM
Jump to post Thread: Problem with refs by DreadyCoder
- Replies
- 2
- Views
- 380
looks to me like they're both hooked into 'da' (whatever that is)
-
11 Jun 2012 6:07 AM
- Replies
- 1
- Views
- 479
http://docs.sencha.com/touch/2-0/#!/guide/history_support
(this is an example)
Ext.define('MyApp.controller.Products',{ extend:'Ext.app.Controller', config:{ ... -
11 Jun 2012 6:05 AM
- Replies
- 5
- Views
- 1,288
did you install the google SDK stuff?
http://developer.android.com/sdk/index.html
my android apps built just fine (too bad i was testing on a 3.2 tablet, hehe) -
11 Jun 2012 6:02 AM
- Replies
- 3
- Views
- 979
Depends, if you are handling retarded amounts of records , like i am: stick with 2.0 if you can.
Memory use of stores is nearly twice as much in 2.0.1 , and there are no (working) build tools for... -
11 Jun 2012 1:08 AM
- Replies
- 11
- Views
- 1,876
Seconding this bug
'Ext.data.proxy.WebStorage' throws an exception on line 65 -
11 Jun 2012 12:30 AM
- Replies
- 2
- Views
- 654
I tried, doesnt seem to help (enough)
anything else i could do ?
The following is my (crude) attempt of trimming the stores, extra trimming tips welcome.
cropStore: function(storeName) {
... -
7 Jun 2012 3:41 AM
- Replies
- 2
- Views
- 654
hey all,
i'm faced with the challenge that the dataset i am loading into (4 different) stores (about 7-8k records of: 1 int and 1 string) is too big.
By the time the fourth store loads, the... -
4 Jun 2012 4:22 AM
- Replies
- 5
- Views
- 909
You can, just disable the transitions (and don't use any lists)
config: {
layout : {
type: 'uxcard',
animation: (Ext.os.is.Android) ? false :... -
4 Jun 2012 4:06 AM
- Replies
- 2
- Views
- 482
try
return record.data.name.substring(1,0);
in stead of
return record.get('lastName')[0]; -
4 Jun 2012 4:03 AM
Jump to post Thread: Unknown error on Iphon by DreadyCoder
- Replies
- 3
- Views
- 692
iphones are picky on how Date object are handled, check if your code depends on this somewhere
-
4 Jun 2012 3:56 AM
- Replies
- 4
- Views
- 880
make sure each button has a uniqie ID
make sure each button has a reference in your controllers config
make sure each button has a control set
config: {
refs: {
myButton : '#myButton' //... -
10 May 2012 1:38 AM
- Replies
- 6
- Views
- 768
too bad, we have our code setup alsmost exactly the same, hehe
i'm poring through http://docs.sencha.com/touch/2-0/#!/guide/ajax but so far it just doesnt want to work -
10 May 2012 1:29 AM
- Replies
- 6
- Views
- 768
i'm in the same boat as you are/were
if you figured it out, i'd love to hear about it -
3 May 2012 5:40 AM
- Replies
- 26
- Views
- 5,062
Even with all animations on False this still happens on our android test devices (a 4.0.4 phone and 3.x tablet) using Sencha Touch 2.0.1 (stable)
even when employing the above CSS 'fixes'
This... -
18 Apr 2012 6:58 AM
- Replies
- 4
- Views
- 4,411
Seconding this, also using logcat and eclipse to develop
My Tablet is a ViewSonic Viewpad 10s
fails to scroll though a standard Ext.dataview.List -
13 Apr 2012 5:06 AM
- Replies
- 1
- Views
- 521
DOH!
myAppName.app.getController('Session') -
13 Apr 2012 4:37 AM
- Replies
- 1
- Views
- 521
Ext.app.controller.getController(string) does not exist (?) while inside Jasmine describe{ it() }
( Ext.app.controller. even lacks a lot more functions, it seems ... ??? )
Anyone got an idea how...
Results 1 to 25 of 28
