Maybe, in the meantime, one solution would be to "have it both ways", i.e.
have the class declaration with the static members AND define global
functions in the defer key?

qx.Class.define("myapp.Myapp",{
  statics : {
     init: function() { ... },
     callServer: function() { ... },
     getMessageBus: function() { ... },
  },
  defer : function()
  {
    window.init = myapp.Myapp.init;
    window.callServer = myapp.Myapp.callServer;
    window.getMessageBus = myapp.Myapp.getMessageBus;
  }
});

This way, you won't have to replace (for the moment) the global functions
but you can still use the qooxdoo class.



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Compile-order-tp6610488p6613596.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Storage Efficiency Calculator
This modeling tool is based on patent-pending intellectual property that
has been used successfully in hundreds of IBM storage optimization engage-
ments, worldwide.  Store less, Store more with what you own, Move data to 
the right place. Try It Now! http://www.accelacomm.com/jaw/sfnl/114/51427378/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to