[qooxdoo-devel] Property Check validation

2013-04-18 Thread Marc-André Dubois
Hi, I receive from my Java server many Long value In my properties of my object, what value do I need to put in the Check property? Integer or Number? Thank you Marc-André Dubois madub...@lanauco.com Programmeur-Analyste Description : Lanauco_logo_couleur_long Signature 1.877.881.5

Re: [qooxdoo-devel] @ignore does not working anymore?

2013-04-18 Thread thron7
On 04/18/2013 05:53 PM, Alexander Voronin wrote: > Will wait for fixes than. Also I've found that #ignore() directive > still works but only if placed in a head of file. Documentation also > contains something about @lint ignoreUndefined() but this also seems > to be not working. I guess you'll

Re: [qooxdoo-devel] @ignore does not working anymore?

2013-04-18 Thread Alexander Voronin
Will wait for fixes than. Also I've found that #ignore() directive still works but only if placed in a head of file. Documentation also contains something about @lint ignoreUndefined() but this also seems to be not working. I guess you'll need to pay some attention for documenting this features. Th

Re: [qooxdoo-devel] @ignore does not working anymore?

2013-04-18 Thread thron7
Yep, I'm working on the Unknown Globals warnings and right now some of the JSDoc checks are not yet in place. T. On 04/18/2013 05:03 PM, Alexander Voronin wrote: Just updated from reposytory and got mass of warnings in code: >>> Collecting classes - Warning: MobilePortal.Application (81): U

Re: [qooxdoo-devel] Răspuns: Question

2013-04-18 Thread Larry K Blische
Yes, I'm using qooxdoo for intranet apps... My first app, written about three years ago is a standalone timeclock. It's platform is an all in one Asus Windows 7 machine with a touch screen that boots up into Chrome running in kiosk mode. I am just about to release my second app which is a facilit

[qooxdoo-devel] @ignore does not working anymore?

2013-04-18 Thread Alexander Voronin
Just updated from reposytory and got mass of warnings in code: >>> Collecting classes - Warning: MobilePortal.Application (81): Unknown global symbol used: Session - Warning: MobilePortal.UI.Locale (238): Unknown global symbol used: Lexicon - Warning: MobilePortal.UI.ToolBarPage (179): Unkno

Re: [qooxdoo-devel] resolved: TypeError: bp is null

2013-04-18 Thread Tobias Koller (GERMO GmbH)
I found the problem and solved it. In my code I had this: members: { __iframe: new qx.ui.embed.Iframe("resource/gcom/html/blank.html"), __create: function () { ... I changed it to members: { __iframe: null, __create: function () { this.__iframe = new qx.u

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Tobias Koller (GERMO GmbH)
This is the stacktrace: TypeError: bp is null qx.dom.Element._allowCreationWithMarkup()(P=Window index.html)gcom.js (line 12990) qx.dom.Element.create()(name="iframe", U=Object { onload="qx.event.handler.Iframe.onevent(this)", frameBorder=0, frameSpacing=0, more...}, V=Window index.html)gcom

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Derrell Lipman
On Thu, Apr 18, 2013 at 10:14 AM, Tobias Koller (GERMO GmbH) wrote: > No i can’t see any error in my source-version…but I will check first if > I access private members outside the classes.. > Another way you can sometimes figure this out, is to add the following to the "let" section of your con

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Tobias Koller (GERMO GmbH)
No i can't see any error in my source-version...but I will check first if I access private members outside the classes.. Von: thron7 [mailto:thomas.herchenroe...@1und1.de] Gesendet: Donnerstag, 18. April 2013 16:07 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] TypeError: bp is null This

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Tobias Koller (GERMO GmbH)
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 : fu

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Marc Puts
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 rena

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread thron7
This code is from qx.event.Manager. As you can clearly see you should have gotten a corresponding error message in the source version. T. On 04/18/2013 03:55 PM, Tobias Koller (GERMO GmbH) wrote: I deactivated the optimization via OPTIMIZE: [] because bp is nonsense ;) And got this output no

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Tobias Koller (GERMO GmbH)
Here are the parameters with the values from the addListener-method where the error occurred: addListener : function(target, type, listener, self, capture) ... target: null type: "mousedown" listener: "qx.ui.embed.Iframe.prototype.block()()" self: qx.ui.embed.Iframe[8-0] { $$hash="8-0", _

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Tobias Koller (GERMO GmbH)
I deactivated the optimization via OPTIMIZE: [] because bp is nonsense ;) And got this output now: The error is in this line: var targetKey = target.$$hash || qx.core.ObjectRegistry.toHashCode(target); TypeError: target is null //hier die Ausgabe addListener : function(target, type, listener,

Re: [qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread thron7
Do you get any warnings in the source version?! On 04/18/2013 03:36 PM, 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

Re: [qooxdoo-devel] Răspuns: Răspuns: Question

2013-04-18 Thread thron7
On 04/18/2013 03:01 PM, tedi tedi wrote: I never knew qooxdoo is capable of creating games. awesome :) I'll search more about this subject and hope to see some games built with qooxdoo. Thanks Lord Of Ultima used to be done with qooxdoo. T. --

[qooxdoo-devel] TypeError: bp is null

2013-04-18 Thread Tobias Koller (GERMO GmbH)
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

Re: [qooxdoo-devel] Răspuns: Question

2013-04-18 Thread thron7
On 04/18/2013 11:41 AM, tedi tedi wrote: Anyway, I guess I'm measuring the popularity of a framework by how many applications are out there, created with that framework. For me, "out there" needs to include Intranet applications or apps that are not on the regular I*net at all (e.g. like brow

[qooxdoo-devel] Răspuns: Răspuns: Question

2013-04-18 Thread tedi tedi
Rob, you might be right ... that build process might be the thing that stops most developers from using qooxdoo. I mean, on Windows you have to install python in order to build the application ... It's a good thing i'm on Linux :-) here python is preinstalled. I mean in order to use JQuery you d

Re: [qooxdoo-devel] Răspuns: Question

2013-04-18 Thread Greg Hellings
On Thu, Apr 18, 2013 at 8:03 AM, Robert Nimax < robert.ni...@inform-software.com> wrote: > Hi all, > I think, the big benefit is the qooxdoo core development team. There are > really good developers, architects and so on working every day on that > framework. Qooxdoo is driven by industry and that

Re: [qooxdoo-devel] Răspuns: Question

2013-04-18 Thread Robert Nimax
Hi all, I think, the big benefit is the qooxdoo core development team. There are really good developers, architects and so on working every day on that framework. Qooxdoo is driven by industry and that makes the difference to a lot of other open source frameworks out there. Even if you´d choose

[qooxdoo-devel] Răspuns: Răspuns: Question

2013-04-18 Thread tedi tedi
I never knew qooxdoo is capable of creating games. awesome :) I'll search more about this subject and hope to see some games built with qooxdoo. Thanks De la: Werner Thie Către: tedi tedi ; qooxdoo Development Trimis: Joi, 18 Aprilie 2013 15:42:43 Subiect:

[qooxdoo-devel] Răspuns: Răspuns: Question

2013-04-18 Thread tedi tedi
Thanks for that info on SPAR, and I'm glad to meet someone that is so confident in qooxdoo. I really didn't know that it's used so much on the intranet. It seems ExtJS has a commercial license or GPL license, according to: http://www.sencha.com/products/extjs/license/ qooxdoo's LGPL sounds better

Re: [qooxdoo-devel] Răspuns: Question

2013-04-18 Thread Werner Thie
Hi so, only what the masses use (and understand) is good? That's why PHP (Pretty Home Page, tsk) has such a following, being what BASIC was in the seventies of the previous millenium? With your gauges adjusted like that, you have to seek elsewhere, but looking at it from an efficiency standpoi

Re: [qooxdoo-devel] Răspuns : Question

2013-04-18 Thread John Spackman
> Yes, the name might make some people think it's not serious enough, >cause it sounds funny and some don't know how to pronounce it. Does that really matter? How funny is a name like "Google", or how relevant is "Apple" to computers? > I'm a bit worried about the fact that 1and1 does not use qo

Re: [qooxdoo-devel] Răspuns: Question

2013-04-18 Thread Vishal
Hi, I have discovered QooxDoo recently and going by examples and doing some tests across other frameworks, it looks like the best thing available. Especially for someone coming in from Python (read OO) and getting into use browser based UI for our next app. I think QooxDoo is a Great framework...

[qooxdoo-devel] Răspuns: Question

2013-04-18 Thread tedi tedi
Yes, the name might make some people think it's not serious enough, cause it sounds funny and some don't know how to pronounce it. Anyway, I guess I'm measuring the popularity of a framework by how many applications are out there, created with that framework. I did see some writen in GWT ( n

Re: [qooxdoo-devel] Question

2013-04-18 Thread thron7
On 04/17/2013 01:02 PM, tedi tedi wrote: How come qooxdoo is not as popular as GWT or ExtJS ? That's a tough question to answer. You don't get much feedback from people that decide against a technology ;-). It's also a question about how you measure being popular. You could say popularity f