Re: [qooxdoo-devel] knowing which calls to listen for

2008-11-26 Thread Alexander Back
Hi metaperl wrote: > I am trying to make use of the tree widget: > http://demo.qooxdoo.org/0.8.x/apiviewer/#qx.ui.tree > > However, I am aware that a working tree will need to have certain listeners > added to it, such as 'changeSelection' and 'dblclick' > > My questions: > - where would all t

[qooxdoo-devel] knowing which calls to listen for

2008-11-26 Thread metaperl
I am trying to make use of the tree widget: http://demo.qooxdoo.org/0.8.x/apiviewer/#qx.ui.tree However, I am aware that a working tree will need to have certain listeners added to it, such as 'changeSelection' and 'dblclick' My questions: - where would all the listeners for a tree be document

Re: [qooxdoo-devel] Qooxdoo Tutorial

2008-11-26 Thread metaperl
Atamert Ölçgen wrote: > > Hi, > I hope this isn't the wrong place to post. I have written a beginner level > tutorial for Qooxdoo. I would like very much to hear your ciritics & > comments. > > http://www.muhuk.com/2008/10/getting-a-little-further-than-hello-world-with-qooxdoo/ > > > >

Re: [qooxdoo-devel] Appearences

2008-11-26 Thread Jim Hunter
Thanks for your response. After reading the wiki I am still a bit confused as to what is actually happening. Yes, I am loading this at runtime. What happens is that the server gets the theme information from a database. This information is different for every client and can be different between 'in

Re: [qooxdoo-devel] v0.8 - generate.py source to include even qx classes

2008-11-26 Thread thron7
Amit Rana wrote: > The thing about the "exclude" func. in the docs. I found it for v0.7 but > not for v0.8. Any pointers ? Gee! It's actually missing from the docs ... gimme until tomorrow, then look for it on this page: http://qooxdoo.org/documentation/0.8/generator_config_ref Thomas --

Re: [qooxdoo-devel] some general queries in 0.8

2008-11-26 Thread Jean-Baptiste BRIAUD -- Novlog
Hi Gaurav, Have a look at http://demo.qooxdoo.org/current/demobrowser/ #widget~SplitPane.html In the js you'll find a way to make one pane take 100% (see the radio butotn to the right). JBB. On 26 Nov 2008, at 17:59, Gaurav Jauhri wrote: > hi, > > I have a class A extending the splitpane("hor

[qooxdoo-devel] some general queries in 0.8

2008-11-26 Thread Gaurav Jauhri
hi, I have a class A extending the splitpane("horizontal") this.add(abc,0); abc another clas extending VBOX this.add(xyz,1); now xyz is another class which extends splitpane("vertical"); since i have already given the flex value 1, so it should occupy all the right part of the class A. But it i

Re: [qooxdoo-devel] v0.8 - generate.py source to include even qx classes

2008-11-26 Thread Amit Rana
Thanks for the info Thomas. Actually, I am using the v0.8 SDK downloaded for the site, so can't get the updates. But, its ok. Once I have my codebase ready, I can then get the latest SDK. The thing about the "exclude" func. in the docs. I found it for v0.7 but not for v0.8. Any pointers ? reg

Re: [qooxdoo-devel] alignX property of VBox - not working

2008-11-26 Thread Amit Rana
Thanks for the tips Fabian. Actually, my container has a lotta widgets, so option 1. is a lengthy way. Option 2. and 3. were not working as it is, bcoz the setAlignX() is a property of layout manager and not the container. So, I get the manager of the container and set the property and it works

Re: [qooxdoo-devel] Can a widget listen for a property change event?

2008-11-26 Thread Patrick Paskvan
On Tue, Nov 25, 2008 at 9:43 PM, Derrell Lipman <[EMAIL PROTECTED]> wrote: > On Tue, Nov 25, 2008 at 4:50 PM, Patrick Paskvan <[EMAIL PROTECTED]> > wrote: >> >> We could tie population of the select box on it's "click" event. The >> handler would change just a bit (assigning vars sb and arr for >>

[qooxdoo-devel] Fix table height in visible row

2008-11-26 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, I'd like to fix a table height so a given number of row is always visible. For example, the table will have 10 visible rows, whatever the number of row is in real. So, if less than 10 row are in the model, there will be blank space after the last row, else, a scrollbar will be there or e

Re: [qooxdoo-devel] Is there a submit event?

2008-11-26 Thread Fabian Jakobs
Hi Kenny, > Shucks, no. Have you heard of CLOS? Multiple inheritance, multimethods, > metaclass hacking. Very popular, tho Paul Graham (see "Arc") and Dick > Gabriel hate OO. > > A few years ago someone even gave a talk at the bi-annual Lisp > conference saying JS *was* Lisp and we should switch

Re: [qooxdoo-devel] alignX property of VBox - not working

2008-11-26 Thread Fabian Jakobs
Hi Amit, > Hi, > > I am using Qooxdoo v0.8 SDK. When I try to set the alignX property for > my conatiner (layout VBox), it gives me an error : > > Assertion error! The property 'alignX' is not supported by the box > layout!: Called assert with 'false' > > > I checked in API, and alignX is indeed

Re: [qooxdoo-devel] v0.8 - generate.py source to include even qx classes

2008-11-26 Thread thron7
Hi Amit, > I have got the results but there is only 1 small bug. Some classes get > included multiple times giving errors in Firebug as : > > Setting "qx.tableResizeDebug" is already defined! > This is just an annoyance you don't have to worry about (it has already been fixed in trunk http:

[qooxdoo-devel] alignX property of VBox - not working

2008-11-26 Thread Amit Rana
Hi, I am using Qooxdoo v0.8 SDK. When I try to set the alignX property for my conatiner (layout VBox), it gives me an error : Assertion error! The property 'alignX' is not supported by the box layout!: Called assert with 'false' I checked in API, and alignX is indeed a property of VBox. I als

Re: [qooxdoo-devel] cannot get HBox to render

2008-11-26 Thread Fabian Jakobs
metaperl schrieb: > > metaperl wrote: > >> >> but nothing is rendered and no errors are thrown in the Console. >> >> >> > > I didnt realize that ./generate.py source > must be called each time the source changes... > > re-running that command seems to have things working. > Not after

Re: [qooxdoo-devel] cannot get HBox to render

2008-11-26 Thread metaperl
metaperl wrote: > > > > but nothing is rendered and no errors are thrown in the Console. > > I didnt realize that ./generate.py source must be called each time the source changes... re-running that command seems to have things working. -- View this message in context: http://www.nab

Re: [qooxdoo-devel] Icon (images) and memory footprint

2008-11-26 Thread Petr Kobalíček
2008/11/26 Jean-Baptiste BRIAUD -- Novlog <[EMAIL PROTECTED]>: > Hi Alex, > On 26 Nov 2008, at 09:13, Alexander Back wrote: > >> Hi Jean-Baptiste, >> >> Jean-Baptiste BRIAUD -- Novlog wrote: >>> Hi, >>> >>> I'm trying to manage memory footprint for all that icons on screen >>> where 80% could be th

Re: [qooxdoo-devel] performance, scallability and reliability

2008-11-26 Thread Jean-Baptiste BRIAUD -- Novlog
On 26 Nov 2008, at 10:06, Fritz Zaucker wrote: > On Tue, 25 Nov 2008, Burak Arslan wrote: > >> first, we're not straying too much off-topic, are we? if so please >> tell. > > Another (border line) comment: > > Adding additional components to a system (SW or HW) will in general > decrease > th

Re: [qooxdoo-devel] v0.8 - generate.py source to include even qx classes

2008-11-26 Thread Amit Rana
Hi, I have got the results but there is only 1 small bug. Some classes get included multiple times giving errors in Firebug as : Setting "qx.tableResizeDebug" is already defined! Mixin "qx.core.MAssert" is already included into Class "qx.dev.unit.TestCase" by class: qx.core.Object! Mixin "qx.ui

Re: [qooxdoo-devel] Icon (images) and memory footprint

2008-11-26 Thread Jean-Baptiste BRIAUD -- Novlog
Hi Alex, On 26 Nov 2008, at 09:13, Alexander Back wrote: > Hi Jean-Baptiste, > > Jean-Baptiste BRIAUD -- Novlog wrote: >> Hi, >> >> I'm trying to manage memory footprint for all that icons on screen >> where 80% could be the same shared instance of Image. >> >> I just realize I can't set the image

Re: [qooxdoo-devel] Demo browser bom/Clip is broken using IE7

2008-11-26 Thread Christian Schmidt
Hi Helder, thanks for the report. Alex has fixed the issue in trunk. Now, the demo works without errors. ;-) Regards Chris Helder Magalhães schrieb: > While browsing through the Demo browser, I stumbled across a minor potential > issue: resetting the clip [1] failed using Internet Explorer 7. W

Re: [qooxdoo-devel] performance, scallability and reliability

2008-11-26 Thread Fritz Zaucker
On Tue, 25 Nov 2008, Burak Arslan wrote: > first, we're not straying too much off-topic, are we? if so please tell. Another (border line) comment: Adding additional components to a system (SW or HW) will in general decrease the reliability, as it will add additional bugs and ways for failure. A

Re: [qooxdoo-devel] cannot get HBox to render

2008-11-26 Thread Fabian Jakobs
metaperl schrieb: > Hello, I got the 'Hello World' example working. Then I tried to replace > > var doc = this.getRoot(); > > with the code in the Image demo > >http://demo.qooxdoo.org/current/demobrowser/#widget~Image.html > > that creates an HBox: > > var layout = new qx.ui.layo

Re: [qooxdoo-devel] cannot get HBox to render

2008-11-26 Thread Jonathan Weiß
Hi metaperl, the source code you uploaded to bitbucket contains this line: doc.add(button1, {left: 100, top: 50}); doc is a composite widget which has a horizontal box layout and therefore does not have left or top layout properties. I guess you just forget to change this after you changed

Re: [qooxdoo-devel] Split button not taking up set Width

2008-11-26 Thread Fabian Jakobs
Nathan Hadley schrieb: > Ah was looking to see if it had already been reported, > > > Hi Nathan, the fix was very simple. You can easily patch your qooxdoo if you don't want to wait for 0.8.1: Modified Paths: -- trunk/qooxdoo/framework/source/class/qx/ui/form/SplitButton.js M

Re: [qooxdoo-devel] Recursion issues

2008-11-26 Thread Fabian Jakobs
Hi Jim, this is really strange. I never got a recursion error in 0.8 and I really see no reason to get one for the operations you describe. Can you assemble a small application, which produces this error? What happens if you run Firefox with disabled extensions? Best Fabian > Is anyone else ha

Re: [qooxdoo-devel] TextField keyevents error

2008-11-26 Thread Taha Özket
Hi, Forgot our implementation :) Just try this code; main: function() { this.base(arguments); if (qx.core.Variant.isSet("qx.debug", "on")){} var doc = this.getRoot(); var text1 = new qx.ui.form.TextField(); text1.addListe

[qooxdoo-devel] cannot get HBox to render

2008-11-26 Thread metaperl
Hello, I got the 'Hello World' example working. Then I tried to replace var doc = this.getRoot(); with the code in the Image demo http://demo.qooxdoo.org/current/demobrowser/#widget~Image.html that creates an HBox: var layout = new qx.ui.layout.HBox(); layout.setSpacing

Re: [qooxdoo-devel] Icon (images) and memory footprint

2008-11-26 Thread Alexander Back
Hi Jean-Baptiste, Jean-Baptiste BRIAUD -- Novlog wrote: > Hi, > > I'm trying to manage memory footprint for all that icons on screen > where 80% could be the same shared instance of Image. > > I just realize I can't set the image instance on tabview.Page, on > Image itself ... the API appear

Re: [qooxdoo-devel] Appearences

2008-11-26 Thread Alexander Back
Hi Jim, Jim Hunter wrote: > I am still working on converting my application from .7 to .8 and for some > reason my custom appearences are not working. I generate, on server startup, > a file that creates my custom appearences. It worked great in .7 but I am > getting "missing appearence: appearanc