Search Type: Posts; User: debianw
Search: Search took 0.02 seconds.
-
26 Mar 2013 10:33 AM
- Replies
- 18
- Views
- 2,024
I did that a month ago, but that didn't work for me. There's a problem with the Cordova webview reporting the correct dimensions width and height after a resume event, lets say after a sleep or after...
-
26 Mar 2013 8:50 AM
- Replies
- 18
- Views
- 2,024
Hey Bloodyaugust,
What is your fix ?. I'm having the same issue after taking a picture using Cordova 2.4. Seems Android is not getting the correct feedback dimensions and reports a wrong height.... -
14 Feb 2013 9:33 AM
- Replies
- 1
- Views
- 472
Hi,
I've seen Android 4.1 comes with Chrome but when I build my app with phone gap (1.7) and I check the Agent version it seems that the old stock browser is used as de webview engine.
Can... -
13 Feb 2013 10:13 AM
- Replies
- 1
- Views
- 234
REQUIRED INFORMATION
Ext version tested:
Sencha Touch 2.1.1 (commercial and open source versions).
Sencha Touch 2.2.0-alpha.
Browser versions tested against:
LG Optimus G: Android 4.0.4... -
12 Feb 2013 11:33 AM
- Replies
- 4
- Views
- 436
Yeah, Android is the IE6 of the web development world. Well, actually IE6, 7, 8 and 9 :)
-
11 Feb 2013 8:01 AM
- Replies
- 4
- Views
- 721
Tested on 2.1.1
Test Case:
- A form panel with 4 fieldsets, each fieldset with 6 fields
Results:
- Nexus 7: Better scrolling.
- Lg Optimus G: Bad performance, so slow, not responsive. the... -
8 Feb 2013 9:52 AM
- Replies
- 4
- Views
- 436
Hi Guys,
I would like to know what do you think about HTML5 mobile apps vs Native apps ? How many years to have the same feel of a Native app ?.
I've seen Android is the one that is too far... -
7 Feb 2013 1:08 PM
- Replies
- 4
- Views
- 721
I haven't yet. I'm going to test 2.1.1 and see the performance.
-
7 Feb 2013 10:15 AM
- Replies
- 4
- Views
- 721
REQUIRED INFORMATION
Ext version tested:
Sencha Touch 2.0.1.1
Browser versions tested against:
LG Optimus G. Android 4.0.4 (Phonegap 1.7)
Nexus 7. Android 4.2 (Phonegap 1.7)... -
6 Feb 2013 7:30 AM
- Replies
- 4
- Views
- 1,454
I'm noticing a bad scrolling in Nexus 7 using Sencha Touch 2.0/phonegap 1.7.
Test case:
- A long form panel with a lot of field items. -
24 Jan 2013 7:22 AM
- Replies
- 3
- Views
- 474
Thanks. How can I get the latest code. is there a public github repo or something ?
-
23 Jan 2013 2:39 PM
- Replies
- 3
- Views
- 474
REQUIRED INFORMATION
Ext version tested:
Sencha Touch 2.2.0-alpha
Browser versions tested against:
iPhone 4; CPU iPhone OS 6_0_1 like Mac OS X / AppleWebKit/536.26
Description: -
23 Jan 2013 1:18 PM
Jump to post Thread: List View Performance by debianw
- Replies
- 1
- Views
- 303
REQUIRED INFORMATION
Ext version tested:
Sencha Touch 2.2.0-alpha
Sencha Touch 2.1
Browser versions tested against:
Lg Optimus G / AppleWebkit/534.30 Android 4.0.4 -
4 Dec 2012 9:44 AM
Jump to post Thread: Promises and Deferreds by debianw
- Replies
- 10
- Views
- 1,537
I agree. Promises pattern help us to clean the code of nested pyramid callbacks.
In asynchronous programing sometimes We end with something like:
doSomething(function(foo){
foo =... -
8 Nov 2012 8:18 AM
- Replies
- 23
- Views
- 8,684
Are associations going to work in Touch 2.1 using WebSql ?
-
29 Oct 2012 7:04 AM
Jump to post Thread: Debug an app with weinre by debianw
- Replies
- 7
- Views
- 1,121
Try to add the script inside the app.json.
What I've been doing inside my app is adding a way to turn on/off the remote debugging. Example I have a togglefield in my configuration screen and I am... -
26 Oct 2012 6:54 AM
Jump to post Thread: Remote Debugging ? by debianw
- Replies
- 8
- Views
- 822
Ok, based on my research about Remote Debugging Weinre is the winner. I already installed a weinre server and it is very useful.
Somethings that weinre missed:
- Display unexpected javascript... -
19 Oct 2012 1:03 PM
Jump to post Thread: Remote Debugging ? by debianw
- Replies
- 8
- Views
- 822
I'm more interested in Remote debugging with Android.
-
19 Oct 2012 7:07 AM
Jump to post Thread: Remote Debugging ? by debianw
- Replies
- 8
- Views
- 822
I would like to know what you guys do, your thoughts, tools you use in order to do a remote debugging.
I know there's a tool called weinre. But this tool doesn't let me set break points and debug... -
2 Oct 2012 10:59 AM
Jump to post Thread: Ext.Date.parse returns undefined by debianw
- Replies
- 2
- Views
- 723
Another comment to add.
Based on the documentation or the API: http://docs.sencha.com/touch/2-0/#!/api/Ext.Date.
"c" format is based on ISO 8601.
Based on the Wiki about ISO 8601 about the... -
2 Oct 2012 10:32 AM
Jump to post Thread: Ext.Date.parse returns undefined by debianw
- Replies
- 2
- Views
- 723
Hi,
I'm not sure Why I'm receiving undefined after parsing a valid date:
// Returns a correct date:
Ext.Date.parse("2012-10-02 03:10:04-0400", "c");
Ext.Date.parse("2012-10-02... -
17 Sep 2012 9:51 AM
- Replies
- 12
- Views
- 1,283
Store is not getting the exception event from the proxy.
if I do something like:
store.on({
exception: function() {
console.log("Hello exception");
} -
17 Sep 2012 9:45 AM
- Replies
- 12
- Views
- 1,283
Hey, thanks hotdp.
That helps me to catch the exception after a Store.sync.
So my code looks like:
var localStore = Ext.getStore('LocalStoreName'); -
17 Sep 2012 8:58 AM
- Replies
- 12
- Views
- 1,283
But based on the API documentation the Store doesn't have the exception event.
http://docs.sencha.com/touch/2-0/#!/api/Ext.data.Store
There's no "exception" event registered for Ext.data.Store -
17 Sep 2012 5:59 AM
- Replies
- 12
- Views
- 1,283
Hey,
What about if an exception happens or there's an invalid SQL ?.
Is the write event just for success writes ?
Thanks
Results 1 to 25 of 38
