Search Type: Posts; User: lopezdonaque

Search: Search took 0.02 seconds.

  1. 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}"
  2. 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
  3. Could you add a compiled version with this patch?
  4. Is this extension compatible Ext JS 3?
  5. Hi, I also need Observable inside core.
    Why is it not included?
    I have tried to use "ext-core.js" from builds folder.

    Thanks
  6. 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...
  7. Simple and fast test case:

    Using Firefox 3.6.16 execute this with Firebug:


    Ext4.Ajax.request(
    {
    url: 'http://crossdomain.com',
    method: 'post'
    });
  8. Firefox 3.6.16

    Reproduce:
    Do ajax cross domain request

    Possible info:
    https://bugzilla.mozilla.org/show_bug.cgi?id=608735

    Possible solution:
  9. 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