Ok I will check this.
But the error occurs in the framework in class qx.ui.embed.Iframe
In the constructor:
It seems that document.body is null...
I'm using iframes, maybe I make something wrong here...
qx.Class.define("qx.ui.embed.Iframe",
{
extend : qx.ui.embed.AbstractIframe,
construct : function(source)
{
if (source != null) {
this.__source = source;
}
this.base(arguments, source);
qx.event.Registration.addListener(document.body, "mousedown", this.block,
this, true);
Mit freundlichen Grüßen
GERMO GmbH
Tobias Koller
Softwareentwickler
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
GERMO GmbH
Wettbachstraße 18
71063 Sindelfingen
http://www.germo.de<http://www.germo.de/>
Tel. 07031 9522-144
Fax 07031 9522-222
Geschäftsführer: Theo Röder, Andreas Röder
Hauptsitz: Hofackerstr. 60, 73660 Urbach
Handelsregister: Amtsgericht Stuttgart, HRB-Nr.: 280255, Ust.-IdNr. DE146624394
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Von: Marc Puts [mailto:marc.p...@realtimesolutions.nl]
Gesendet: Donnerstag, 18. April 2013 15:49
An: qooxdoo-devel@lists.sourceforge.net
Betreff: Re: [qooxdoo-devel] TypeError: bp is null
Hi Tobi,
This often happens if you try access a private variable (prefixed with two
underscores) from outside a class (thus violating access rules). You should go
through your code to find where that happens and fix that.
The build version of the generator optimizes private variables by renaming them
to a shorter name, to produce a smaller script. The source version doesn't have
this optimization, that's why your code works in the source version, even
though it's still wrong.
Regards,
Marc
On 18-04-13 15:36, Tobias Koller (GERMO GmbH) wrote:
Hi,
I have a problem with the build-version of my application.
My source-Version works without problems.
But when I create the build-version (generate.py build)
I get this error when I open the application in any browser:
TypeError: bp is null
Can you help me with this?
Qx: 2.1.1
Thanks
tobi
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net<mailto:qooxdoo-devel@lists.sourceforge.net>
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel