Hi all, to demonstrate the problem in qx 0.7.4 I've created a simple test case: ------------------------------------- qx.Class.define("Application", { extend : qx.application.Gui,
members : { main : function() { this.base(arguments); var iframe = new qx.ui.embed.Iframe( "http://www.eclipse.org" ); iframe.setTop(100); iframe.setLeft(50); iframe.setWidth(800); iframe.setHeight(600); iframe.addToDocument(); } } }); ------------------------------------- When the page is loaded in the iframe the links/events are not active till the user click somewhere in the browser window. This is because of the blocker node. What is the purpose of this blocker node (div) which is added on Iframe creation? To avoid this first click to "activate" the iframe, where is the best place to release the blocker node? On "load" event? Best, Ivan ------------------------------------------------------------------------------ Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe AIR, Ajax developers can use existing skills and code to build responsive, highly engaging applications that combine the power of local resources and data with the reach of the web. Download the Adobe AIR SDK and Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel