Search Type: Posts; User: lopezdonaque
Search: Search took 0.02 seconds.
-
10 Oct 2012 1:14 AM
Jump to post Thread: Ext.encode() error by lopezdonaque
- Replies
- 5
- Views
- 695
Encoding an exception also returns "undefined".
To reproduce:
try{ var a = foo.b; }catch( e ){ Ext4.encode( { a: e } ); }
Expected:
"{"a":null}"
Return:
"{"a":undefined}" -
24 May 2012 11:45 PM
- Replies
- 4
- Views
- 580
Please, could you compile your patch with the updated version 2.0.3?
http://www.sencha.com/forum/showthread.php?74906-JSBuilder2-bugs&p=567213&viewfull=1#post567213 -
24 May 2012 10:53 PM
- Replies
- 4
- Views
- 580
Could you add a compiled version with this patch?
-
8 Mar 2012 12:05 PM
- Replies
- 37
- Views
- 22,590
Is this extension compatible Ext JS 3?
-
2 Feb 2012 4:23 AM
- Replies
- 3
- Views
- 817
Hi, I also need Observable inside core.
Why is it not included?
I have tried to use "ext-core.js" from builds folder.
Thanks -
16 Dec 2011 5:56 AM
- Replies
- 4
- Views
- 920
Currently, the only effect for 'cors:true' is to use XDomainRequest (to use in IE) instead of XmlHttpRequest.
Now, I could do ajax cross domain request with ExtJS 3.4 using "Ext.Ajax.request" method... -
15 Dec 2011 11:26 PM
- Replies
- 4
- Views
- 920
Simple and fast test case:
Using Firefox 3.6.16 execute this with Firebug:
Ext4.Ajax.request(
{
url: 'http://crossdomain.com',
method: 'post'
}); -
14 Dec 2011 11:55 PM
- Replies
- 4
- Views
- 920
Firefox 3.6.16
Reproduce:
Do ajax cross domain request
Possible info:
https://bugzilla.mozilla.org/show_bug.cgi?id=608735
Possible solution: -
14 Dec 2011 11:41 PM
- Replies
- 1
- Views
- 1,110
if ((options.cors === true || me.cors === true) && Ext.isIe && Ext.ieVersion >= 8) {
should be
if ((options.cors === true || me.cors === true) && Ext.isIE && Ext.ieVersion >= 8) {
Results 1 to 9 of 9
