Hi Ivan,

the blocker is needed, that the iframe makes no problems by mouse or key 
events.

You can release the blocker node on the "load" event.

iframe.addEventListener("load", function()
      {
        iframe.release();
      }, this);

Cheers,
Chris

Ivan Furnadjiev schrieb:
> 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
>   


-- 
Christian Schmidt
Software Engineer
Core Development :: Web Technologies

1&1 Internet AG
Ernst-Frey-Str. 9
76135 Karlsruhe, Germany
http://www.1und1.de 

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


------------------------------------------------------------------------------
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

Reply via email to