Re: [qooxdoo-devel] Call Qooxdoo class from embedded iframe

2014-07-23 Thread Daniel Wagner
You can call *static* methods from the iframe using their fully qualified name. For member methods, you would need a reference from the application to the instance that holds the method, e.g.: window.parent.qx.core.Init.getApplication().myobject.mymemberfunction >From a design point of view, howe

[qooxdoo-devel] Call Qooxdoo class from embedded iframe

2014-07-21 Thread chalbu
I have created an Iframe using: var iframe = new qx.ui.embed.Iframe("/sample/testmsg.html"); Within the testmsg.html file I have a script running that needs to call a member of the Qooxdoo class that created the Iframe. If this is possible would the reference be something like: window.parent.qx..