I think i have found another one.*

*Here's my code that shown the problem:*

save : function(e)
    {
      var prev_state = this.getState();
      this.setState("sending");
      var vUrl = "http://localhost:666/letel/pub/admin/user/save/json";; //
have tried just /letel/pub/admin/user/save/json
      var a = new qx.io.remote.Request(vUrl, 'POST', 'application/json');


      var record = {
                      "name"        : this._fields["name"].getValue(),
                      "email"     : this._fields["email"].getValue()
       };

      a.addListener("completed", function(e)
      {
        if (e.getContent().success)
        {
          this.fireDataEvent("save",  { record : record  });
        }
        else
        {
            console.log(e.getContent());
        }
      },
      this);


      for(var field in record)
      {
          a.setFormField(field, record[field]);
      }
      a.setCrossDomain(false); //have tried false and true here
      a.send();
    },

*None of the fields set by setFormField was being sent, The server was
recieving nothing unless "nocache" parameter by GET.

After commenting the line #220 in qx.io.remote.transport.Iframe, that line:
this._data.appendChild(document.createTextNode(this.getData()));

It started to work.

2008/8/26 Guilherme Aiolfi <[EMAIL PROTECTED]>

> target is null
>  target.visualizeFocus(); FocusHandler.js (linha 193)
> target is null
>  target.visualizeBlur(); FocusHandler.js (linha 210)
>
> when the button has the focus and it is disabled
>
>
> 2008/8/26 Guilherme Aiolfi <[EMAIL PROTECTED]>
>
> I have one:
>>
>> scrollerArr[i]._tablePane is undefined
>>  scrollerArr[i]._tablePane._updateContent();  Table.js (linha 1439)
>>
>> When changing the locale with some localized strings in the headers of the
>> table.
>>
>>
>> 2008/8/26 thron7 <[EMAIL PROTECTED]>
>>
>> Andreas Ecker wrote:
>>> > Hi,
>>> >
>>> > as planned we are getting closer to the qooxdoo 0.8 final release. :-)
>>> >
>>> > We expect it to be released on Thursday, 2008-08-28, with a code freeze
>>> > for release testing the day before.
>>> >
>>>
>>> Particularly, for the devs, please commit any changes that should make
>>> it into the release before Wednesday, 2008-08-27, 18:00 UTC. After that,
>>> please withhold any further commits until the release is announced on
>>> Thursday.
>>>
>>> Thanks,
>>> Thomas
>>>
>>> > If you have any issues to report, please do so asap! Particularly when
>>> > working with the current SVN version, but also when trying out RC1 or
>>> > the online demos.
>>> >
>>> > Thanks,
>>> >
>>> > Andreas
>>> >
>>> >
>>>
>>>
>>> -------------------------------------------------------------------------
>>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>>> challenge
>>> Build the coolest Linux based applications with Moblin SDK & win great
>>> prizes
>>> Grand prize is a trip for two to an Open Source event anywhere in the
>>> world
>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>>> _______________________________________________
>>> qooxdoo-devel mailing list
>>> [email protected]
>>> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>>>
>>
>>
>
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to