Re: [qooxdoo-devel] How can I determine if class is derived from another class in namespace branch

2006-07-20 Thread Dietrich Streifert
MOOOAAAH! I just found code where I used the instanceof operator myself. Sometimes changing between Java, C++, Perl, _javascript_, W4GL is confusing. I'm getting old :-( Thank you Andreas for reactivating that part of my brain. The good is I learned something about qx.OO. I'm impressed of

Re: [qooxdoo-devel] Tricky ListView Problem

2006-07-20 Thread sharmaprateek
Can anyone please help me! ? I am really stuck in this situation.. Any help will be deeply appreciated.. Please give me your suggestions how to recover from this problem!. Regards, Prateek. -- View this message in context: http://www.nabble.com/Tricky-ListView-Problem-tf1965726.html#a5428542 Se

Re: [qooxdoo-devel] Namespaces and Table Column Height

2006-07-20 Thread Jim Hunter
I dug a little deeper to see what fun I could have and to try and make this  a bit simpler, less 'automatic' and I see this line used in the Table code:paneScroller.getHeader().setHeight(maxHeaderHeight);paneScroller is a TablePaneScroller. So I thought it would be quicker for me to simply create a

Re: [qooxdoo-devel] Namespaces and Table Column Height

2006-07-20 Thread Jim Hunter
Thanks for pointing me in the right direction. I was able to modify the function to look for '' and if it found one (only caring about 2 row headers right now) then it would increase the height of the header. It works perfect! Do you have any suggestions for my other post about getting the row numb

Re: [qooxdoo-devel] How can I determine if class is derived from another class in namespace branch

2006-07-20 Thread Andreas Ecker
Hi, Dietrich, don't know if the following is good new to you. ;-) Nice idea, but it is already available in plain old JavaScript: widget instanceof qx.core.Object Bye, Andreas Dietrich Streifert wrote: > I've implemented a method for qx.core.Object which adds a isA method to > Object.js.

Re: [qooxdoo-devel] How can I determine if class is derived from another class in namespace branch

2006-07-20 Thread Dietrich Streifert
I've implemented a method for qx.core.Object which adds a isA method to Object.js. I've put in bugzilla as enhancement bug #112: http://bugzilla.qooxdoo.org/show_bug.cgi?id=112 The patch can be viewed here: http://bugzilla.qooxdoo.org/attachment.cgi?id=27&action=view I have tried to be as qoo

[qooxdoo-devel] How can I determine if class is derived from another class in namespace branch

2006-07-20 Thread Dietrich Streifert
Hello List! I need to know classes a subclass is derived from. Something like th isA() Operator. So if I have: var target = qx.core.Target() Then the expression: target.isA("qx.core.Object") should be true. Is this possible? Thank you for your help. -- Mit freundlichen Grüßen Dietri

Re: [qooxdoo-devel] Namespaces and Table Column Height

2006-07-20 Thread Til Schneider
Jim Hunter schrieb: > After reading through the docs for the new Table in the Namespaces > branch, I can not find a way to increase the height of the column > headers. I need two and sometimes three rows of text, to be decided at > runtime. Anyone know how to get this done? The table header hei

[qooxdoo-devel] Re : How to get the clientDocument from inside the program

2006-07-20 Thread Elie Dumas
Hi again,i finally found how to reach the var d = this.getClientWindow().getClientDocument(); from inside a program. If anybody else was interested in that problem... here is the solution :that QxClientDocument is in  window.application.getClientWindow().getClientDocument() from anywhere in the pro

Re: [qooxdoo-devel] help - Error in SVN Checkout of Qooxdoo

2006-07-20 Thread ACampelo
I'm receveing the same error from SVN. I'm working in a Window XP machine using SmartSVN Foundation 2.0. What I did was downloaded each folder, and not the entire source folder. But the theme folder I still have the error code poped in my screen. I don't know if this error is a kind of time-out

[qooxdoo-devel] Force redraw a fieldset

2006-07-20 Thread Laurent Donstetter
  Hi all,   I need to dynamically change the size and color of the font for a QxFieldSet caption. When it is changed, the fieldset is not redrawn and the caption text writes over the fieldSet frame border.   Is it possible to force a redraw of the fieldset or to recalculate the frame’

Re: [qooxdoo-devel] help - Error in SVN Checkout of Qooxdoo

2006-07-20 Thread sharmaprateek
I dont know why you got that error from SVN.. but I think most of the files required by you have been downloaded already.. The examples donot execute properly because you are supposed to BUILD your qooxdoo source files. To do that follow the instructions given here: http://qooxdoo.org/documentat

[qooxdoo-devel] QxImage setSource

2006-07-20 Thread Farid Elyahyaoui
I try to create a qximage to display a generated image: var img = new QxIMage("/path/to/my/image.png"); when I modify the generated image and try to update the qximage with: img.setSource("path/to/my/image.png"); I still get the (old) unchanged version displayed in my browser. Could this be cau