Hi,

renderer was an old branch previous to 0.5.3. Now, you should use namespaces branch.


On 8/9/06, Jon Fawcett < [EMAIL PROTECTED]> wrote:
I just built the renderer branch and now have some items that no longer
work. The below code worked fine in 0.5.2 and 0.5.3, but produces the
following error using the renderer branch.:

ERROR: QxRequest: Could not dispatch event of type "completed":e.getData().getContent is not a function: _dispatchEvent



  var b = new QxButton("Login");
    b.setTop(105);
    b.setRight(30);
    b.setWidth(100);
    b.addEventListener("click", Login);
    w1.add(b);

function Login(e){
      var req = new QxRequest("login.php, "GET", "text/plain");
        req.addEventListener("completed", function(e) {
                eval(e.getData().getContent());
                });
        req.send();
        };


The login.php returns some js code which in 0.5.3 was then executed by the eval function. I have completely removed all code from login.php to make sure there wasn't an error in there. So I can only assume it's something in the code listed above.

Does anyone know what would have changed from 0.5.3 that would have affected this?

Thanks,
Jon


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel



--
Salut,
====================================
Ricardo Borillo Domenech
Analista/Programador - Servei d'Informàtica
Universitat Jaume I
http://xml-utils.com
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to