hi,

using venkman in qooxdoo is real powerful, but you need a qooxdoo build which is not packed on one line. otherwise its not fun :-)

btw: anyone who want's to use the javascript console for output of the qooxdoo messages can use this pattern (execute it after loading qooxdoo.js):

QxObject.prototype.debug = function(m, c) {
  var clz = this.classname;
  var hc = this._hashCode;
  if (c == "error")
    setTimeout(function() {
      throw new Error(c+":"+clz+"@"+hc+":" + m);
    },
    0);
};

change it to display "every" type of messages (remove the "if" :-).

is there a builtin for this functionality? i didn't found anything.

</usc>


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to