Re: [qooxdoo-devel] Javascript power (2)

2009-12-09 Thread Dan
On Wed, Dec 9, 2009 at 8:47 AM, Jean-Baptiste BRIAUD -- Novlog < j-b.bri...@novlog.com> wrote: > > GNOME 3 will use Javascript ... > > > http://www.ubuntugeek.com/gnome-3-the-future-of-the-linux-desktop-revealed.html > > Thanks to Clutter project. > http://www.clutter-project.org Qt have easy to

Re: [qooxdoo-devel] Logging in qooxdoo

2009-12-09 Thread Daniel Wagner
Hi Balage, logging in qooxdoo is split up into a central logging engine (the static class qx.log.Logger) which receives and dispatches log messages, and one or more log appenders which do the actual processing, such as storing and/or displaying messages. The debug/info/warn/error methods that

Re: [qooxdoo-devel] Logging in qooxdoo

2009-12-09 Thread Fritz Zaucker
Hi Balage, I think the "magic" is in the following lines of code that are generated by the template creation tool create-application.py // Enable logging in debug variant if (qx.core.Variant.isSet("qx.debug", "on")) { // support native logging capabilities, e.g.

[qooxdoo-devel] Logging in qooxdoo

2009-12-09 Thread balage42-qooxdoo
Hi everyone! I have a quite silly question: I tried to figure out, how the logging system works. I found the methods debug, info, warning and error of the Object, and the console.log function. The later seems to work only with Firefox and Firebug, but having a console.log call in the source mak

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread thron7
Matthew Gregory wrote: * a parameter in the build toolchain to allow to specify where the SDK will be after a compile source build. This would allow to to compile source and then move source somewhere else. I know source is not for production but for validation purpose or to solve a tricky b

Re: [qooxdoo-devel] IE7 and popup dialogs

2009-12-09 Thread John Spackman
Hi Chris, Great that's fixed it, thanks for your help. Regards John -Original Message- From: Christian Schmidt [mailto:schmidt.christ...@1und1.de] Sent: 09 December 2009 12:32 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] IE7 and popup dialogs Hi John, please try this in the

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread benco
Hello, In my opinion, the new data binding features are what I prefer the most. It helps cleaning codes with thousand of addListener() methods with smart and simple declarations. I haven't took a look at the new virtual widgets implementations yet but it looks also great. I think I may use it wh

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread Matthew Gregory
Fritz Zaucker wrote: > I can't speak for the Qooxdoo developers, but I myself would be most > grateful if you pointed out "imperfect" things in my code to ... even better > with suggestions for improvement ... ;-) It's not often that it happens. If it is a problem then I report a bug (usually wit

Re: [qooxdoo-devel] How to access a qooxdoo element from "outside"

2009-12-09 Thread Oliver Specht
Hi, Chris, this works great. Thank you! Now I have to see how I can select the right widget etc., but it seems that this is more finding out the mysterious ways of the RAP framework ;) Thank you all for your help, Oliver Christian Schmidt wrote: > Hi Oliver, > > sorry, I'm not perfectly famili

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread Fritz Zaucker
Hi Matt On Wed, 9 Dec 2009, Matthew Gregory wrote: > Whilst browsing the qooxdoo source code, I have to be honest and say > that there has been a few times I haven't seen what I like, but then > that is expected, I'm a picky perfectionist (Well try to be)! I can't speak for the Qooxdoo developer

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread Matthew Gregory
Hi, (Sorry it's been so long, been away doing server side coding). I agree with what most peopl have said, but wanted to comment on something possibly unique. When I find a bug or quirk in the framework, or I want to know how something works internally so I can tweak it, I just look at the sour

[qooxdoo-devel] Javascript power (2)

2009-12-09 Thread Jean-Baptiste BRIAUD -- Novlog
GNOME 3 will use Javascript ... http://www.ubuntugeek.com/gnome-3-the-future-of-the-linux-desktop-revealed.html Thanks to Clutter project. http://www.clutter-project.org -- Return on Information: Google Enterprise Search

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread Matthew Gregory
> * a parameter in the build toolchain to allow to specify where the SDK will > be after a compile source build. This would allow to to compile source and > then move source somewhere else. I know source is not for production but for > validation purpose or to solve a tricky bug, we need debug m

Re: [qooxdoo-devel] IE7 and popup dialogs

2009-12-09 Thread Christian Schmidt
Hi John, please try this in the main method: var root = this.getRoot(); root.getContainerElement().setStyles({ position: "absolute", textAlign: "left" }); I haven't tested it, but I think this should solve your issue. Cheers, Chris John Spackman schrieb: > Hi Daniel, > > Yep, that's got it

Re: [qooxdoo-devel] IE7 and popup dialogs

2009-12-09 Thread John Spackman
Hi Daniel, Yep, that's got it. Is there a work around or a patch I can apply (rather than upgrade to 0.8.3 just yet)? John -Original Message- From: Daniel Wagner [mailto:daniel.wag...@1und1.de] Sent: 09 December 2009 9:21 AM To: qooxdoo Development Subject: Re: [qooxdoo-devel] IE7 and

Re: [qooxdoo-devel] How to access a qooxdoo element from "outside"

2009-12-09 Thread Christian Schmidt
Hi Oliver, sorry, I'm not perfectly familiar with qx. 0.7.x. I think we told you the wrong method. Please try this to get the root widget: var rootWidget = qx.ui.core.ClientDocument.getInstance(); To traverse to your application, use "getChildren()": var childrenArray = rootWidget.getChildren();

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread panyasan
I cannot add much except that I find that as a hobby programmer, I find it intellectually stimulating to work with the framework and just by learning how to do thing the "qooxdoo way", I learn alot about design patterns, programming models, etc instead of ad-hoc "hackery". The combination of AP

Re: [qooxdoo-devel] menubar choices not hidden when pressing ESC

2009-12-09 Thread Daniel Wagner
Hi skar, looks like a general problem with the "keypress" event for ESC in WebKit. I've opened a bug report: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3201 Regards, Daniel skar schrieb: > Hi, > > Using this playground code, when I press on the top level button, the > choices are show. Whe

Re: [qooxdoo-devel] How to access a qooxdoo element from "outside"

2009-12-09 Thread Oliver Specht
Hi, Daniel, ok, thanks, this works. Isn't there any possibility to traverse the applications widgets or ui elements? Sorry for asking and asking but getApplication() only returns an Object and I do not know what to do with it now. The API Docs do not help and I haven't found any good doc resou

[qooxdoo-devel] menubar choices not hidden when pressing ESC

2009-12-09 Thread skar
Hi, Using this playground code, when I press on the top level button, the choices are show. When I press ESC, the choices are hidden in FF 3.5 and Opera 10.01. In chrome 4.0.249.30, it doesn't hide when pressing ESC. > var doc = this.getRoot(); > var top_menu = new qx.ui.menu.Menu; > > var top

[qooxdoo-devel] RPC Java contrib

2009-12-09 Thread Jean-Baptiste BRIAUD -- Novlog
Hi the list ! I'm pleased to announce we launched the rewrite of RPC Java. We started using the RPC Java contrib few months ago now. As said at this time, we felt we'll have to rewrite it but I decided to wait until we really know well the API and concepts. We are currently writing a technical

Re: [qooxdoo-devel] IE7 and popup dialogs

2009-12-09 Thread Daniel Wagner
Hi John, Chris tells me there was a similar issue at one point that was caused by a "text-align: center" style on the body element. Could you check if the window's content element inherits any styles like that? Failing that, you could use the IE dev tools to copy your application's generated HT

Re: [qooxdoo-devel] How to get the selection in a table before sorting the rows ?

2009-12-09 Thread Fabian Jakobs
Hi Loïc, > Hi. > > Is there a way to get the selected rows in a table just before the rows are > sorted (typically by clicking on a column header) ? What I want to achieve is > to keep the selection of the rows after sorting the table (because currently > the selection is cleared), so I'd like t

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread Siarhei Barysiuk
Hi, Here is my list. - community - OO model - well thought-out API - tool chain and generator (optimization, dev tools, etc.) - nice integration with contributions ... and many more. Qooxdoo looks like a finished product. What would I add? A *big* promotion campaign. :) Thanks for all your wor

Re: [qooxdoo-devel] Different behavior of source and build version - Reorderable list

2009-12-09 Thread Daniel Wagner
Hi Luke, I could reproduce this issue in the trunk, looks like a bug. I've added a report here: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3200 Add yourself to CC if you want to keep track of it. Regards, Daniel lp1051 schrieb: > Yes, I did. I was trying to copy the code from demopage into n

Re: [qooxdoo-devel] incremental initialization

2009-12-09 Thread Fabian Jakobs
Burak Arslan schrieb: > hi, > > some screens we're designing with jsqt are getting complex, taking some > noticable time to load. so i think it's time to implement an incremental > initialization scheme. > > i did look around to progressive namespace, but could not find much. did > i miss someth

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread Loïc Bresson -- Novlog
I'll be brief since the most important for me has already been said. - the qooxdoo OO model, with lots of widgets/controls/etc - a great community (qooxdoo team and users), always nice and responding fast - the "on the fly" searchable API (although it *really* lacks documentation on events), - th

Re: [qooxdoo-devel] How to trigger a download when clicking a qooxdoo button RESOLVED

2009-12-09 Thread Marcel Ruff
This is how I do it now: 1) Prepare a form: var text = '' + '' + '' + '' + ''; var hiddenForm = new qx.ui.embed.Html(text); this.filterGrid.add(hiddenForm, {row: ROW1, column: COL8}); 2) And later on button click: this.exportButton.addListener("execute", function(e){ var downloadForm = window.

Re: [qooxdoo-devel] How to access a qooxdoo element from "outside"

2009-12-09 Thread Daniel Wagner
Hi Oliver, Chris' advice works in qooxdoo 0.8, but RAP uses qooxdoo 0.7 so you'll have to use this instead: qx.core.Init.getInstance().getApplication() Regards, Daniel Oliver Specht schrieb: > Hi, Chris, > thanks for the advice but it did not work. I tried this with the Firebug > but maybe

Re: [qooxdoo-devel] Your favorite aspects of qooxdoo !?

2009-12-09 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, I'll start with my 2 cents on things to improve so I can finish on positive things : * a parameter in the build toolchain to allow to specify where the SDK will be after a compile source build. This would allow to to compile source and then move source somewhere else. I know source is not