Petr Kobalíček schrieb: > Hi, > > is there any way to invoke application initialization manually ? > > I mean to completely skip qxsettings["qx.application"] and call > something like qx.core.Init.init(). > > Is this possible ? > No. We know of this limitation and we would like to remove it. Could you please open a bug report for this issue? > I need this for qxbuild. It works fine for all browsers except IE. > Qxbuild loads all scripts by adding script into document head, but IE > calls domready event too early (after first script is loaded). So I > need to workaround this issue by calling qooxdoo initialization when > I'm sure that all scripts were loaded. > > I don't know how to do this without assistance. > I think with Alex idea it is possible to get it working. Take a look at the bottom of your qx-build.js file. There you'll find the line
if (window.qx && qx.event && qx.event.handler && qx.event.handler.Application) qx.event.handler.Application.onScriptLoaded(); which tells the application event handler that all required scripts are loaded and the "ready" can be fired. In your case not all script files are loaded at this point. You can try to remove these lines from qx-build.js and call them after the user's scripts are added. Hope this helps, Best Fabian -- Fabian Jakobs JavaScript Framework Developer 1&1 Internet AG - Web Technologies Ernst-Frey-Straße 9 · DE-76135 Karlsruhe Telefon: +49 721 91374-6784 [email protected] Amtsgericht Montabaur / HRB 6484 Vorstände: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas Gottschlich, Robert Hoffmann, Markus Huhn, Hans-Henning Kettler, Dr. Oliver Mauss, Jan Oetjen Aufsichtsratsvorsitzender: Michael Scheeren ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
