Re: [qooxdoo-devel] Moving a widget into a window

2007-06-06 Thread dperez
Sorry, I don't understand your question. FrozenDice wrote: > > Does anyone know how to move add a widget into a window so that it > moves to inside the window when you click a button? > -- View this message in context: http://www.nabble.com/Moving-a-widget-into-a-window-tf3881036.html#a1100

[qooxdoo-devel] Moving a widget into a window

2007-06-06 Thread FrozenDice
Does anyone know how to move add a widget into a window so that it moves to inside the window when you click a button? - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express an

Re: [qooxdoo-devel] Is there a TreeFullControl event for clicking on a leaf?

2007-06-06 Thread FrozenDice
Well I am using the click event and the only thing I have gotten to work strangely enough is this: if(event.getData()[0].getVisibleChildrenLength() == 3) alert("file"); I have NO IDEA why it works, but it seems to work consistently in IE and FF. The function isEmpty and hasChildren, both didn't wo

Re: [qooxdoo-devel] Is there a TreeFullControl event for clicking on a leaf?

2007-06-06 Thread FrozenDice
I looked around more and couldn't find an event that did this, so I figure I could just attach a event to each leaf. I tried this trs = qx.ui.treefullcontrol.TreeRowStructure.getInstance().standard("Data Type"); var p_0 = new qx.ui.treefullcontrol.TreeFile(trs); p_0.addEventListener('click', f

[qooxdoo-devel] Is there a TreeFullControl event for clicking on a leaf?

2007-06-06 Thread FrozenDice
I need a event that will fire when the user clicks on a leaf(qooxdoo calls them "files" as opposed to folders). Is there such thing? I can't find events in the API viewer. - Daniel - This SF.net email is sponsored by DB2

[qooxdoo-devel] FCKeditor snippet update

2007-06-06 Thread Hubert Denkmair
Hi all, the problems I mentioned about migrating the FCKeditor example to 0.7 were my own fault, except for the > setBorder("none"); which is not needed at all. So, the automagically migrated script is working fine, anyways, I updated the Wiki page with the new class syntax: http://qooxdoo.org/

[qooxdoo-devel] How do I add an event handler in D4PHP?

2007-06-06 Thread FrozenDice
I know there are a few people here who use Delphi for PHP so I figured you might know. I want to add an event handler treeOpenWhenEmpty to a Tree, the problem is in D4PHP you can only insert code that is activated by events. This means I can't simply tack an t.addEventHandler. to the end of w

Re: [qooxdoo-devel] Translation not working

2007-06-06 Thread Christian Boulanger
Yep, this was it. Sorry for the noise. C. Christian Boulanger schrieb: > Some wise man (or woman?) said: "If everything else fails, read the manual". > > So I came across > > http://qooxdoo.org/documentation/0.7/internationalization > > which I had not seen before. There, it says: > > -- > You

Re: [qooxdoo-devel] How do I put a RadioButton Group in a Tree?

2007-06-06 Thread derrell . lipman
FrozenDice <[EMAIL PROTECTED]> writes: > Does anyone have any examples, code, anything that is using the > RadioManager? I think I need more of an example than a single use I > saw from the Example demo section. Any help would be appreciated. Ok. Looking deeper into this situation, I think I s

Re: [qooxdoo-devel] How do I put a RadioButton Group in a Tree?

2007-06-06 Thread FrozenDice
Does anyone have any examples, code, anything that is using the RadioManager? I think I need more of an example than a single use I saw from the Example demo section. Any help would be appreciated. - Daniel On 6/6/07, FrozenDice <[EMAIL PROTECTED]> wrote: > I'm using delphi for PHP, which handl

[qooxdoo-devel] Radiobuttons not working under IE7

2007-06-06 Thread FrozenDice
I was just wondering if the bug where radio buttons don't work under IE7 has been fixed in the latest 0.7 update. I can't upgrade right now to figure out. The bug was if you had a radio button and you clicked it, it wouldn't move to the clicked state(the button wouldn't have the blue dot in the m

Re: [qooxdoo-devel] How do I put a RadioButton Group in a Tree?

2007-06-06 Thread FrozenDice
I'm using delphi for PHP, which handles all the qooxdoo stuff transparently for me, so I think it is making the source and everything whenever I tell the IDE to run or build, that shouldn't be the problem. I did though change the checkboxes to radio buttons(stupid mistake), but that still didn't f

[qooxdoo-devel] Does removeState compress multiple state changes in qx 0.7?

2007-06-06 Thread Dietrich Streifert
Hello List, I introduced some additional states to TextField to reflect the validity of input data. In some cases I have multiple calls to removeState consecutively. In the code I can see that each call to removeState/addState contains the enqueing of the current object to the state queue:

Re: [qooxdoo-devel] qx.Class.getByName() not a constructor

2007-06-06 Thread dperez
This is the full list of errors (all of them confusing): qx.Class.getByName(qx.core.Setting.get("qx.logAppender")) is not a constructor [Break on this error] statics.ROOT_LOGGER.addAppender(new (qx.Class.getByName(qx.core.Setting.get(... Logger.js (line 511) qx.Class.getByName(qx.core.Setting.get

[qooxdoo-devel] qx.Class.getByName() not a constructor

2007-06-06 Thread dperez
Hi, I'm using the source version of qooxdoo 0.7. I have migrated my app to qooxdoo 0.7, and this is the 1st error after loading the page: qx.Class.getByName(qx.core.Setting.get("qx.logAppender")) is not a constructor call stack: defer(function())Logger.js (line 511) define("qx.log.Logger",

Re: [qooxdoo-devel] Translation not working

2007-06-06 Thread Christian Boulanger
Some wise man (or woman?) said: "If everything else fails, read the manual". So I came across http://qooxdoo.org/documentation/0.7/internationalization which I had not seen before. There, it says: -- You must specify literals with quotes instead of apostrophes. this.tr("Hello World") is v

Re: [qooxdoo-devel] 0.7 properties: Object.get() no longer supported?

2007-06-06 Thread Fabian Jakobs
Hubert Denkmair schrieb: > Thank you very much for your quick support! > Though other parts of trunk seem to be broken atm, > the new property code works perfectly for me now. > > While porting my app to 0.7 I still have some problems, > e.g. using FCK editor as described in > http://qooxdoo.org/do

Re: [qooxdoo-devel] 0.7 properties: Object.get() no longer supported?

2007-06-06 Thread Hugh Gibson
> While porting my app to 0.7 I still have some problems, > e.g. using FCK editor won't work out-of-the-box. > I'll probably sort this out by myself when I have some spare time, > though. That's a show-stopper for us. I'm avoiding migrating for the moment anyway as we are behind on our schedule a

[qooxdoo-devel] Settings in API Viewer

2007-06-06 Thread dperez
Hi, The API Viewer would be even better, if settings (http://qooxdoo.org/documentation/0.7/user_manual/settings) were shown. Regards, David -- View this message in context: http://www.nabble.com/Settings-in-API-Viewer-tf3878067.html#a10989162 Sent from the qooxdoo-devel mailing list archive at

Re: [qooxdoo-devel] Announcement: qooxdoo 0.7 released

2007-06-06 Thread dperez
Qooxdoo 0.7 deserves a try! 1st migration problems: qx.core.Init.getInstance().defineMain() isn't converted. :-( The workaround I think is to use qx.application.Gui I also receive this warning: * This package does not work standalone [exec] - The following classes are missing at runtime:

Re: [qooxdoo-devel] 0.7 properties: Object.get() no longer supported?

2007-06-06 Thread Hubert Denkmair
Thank you very much for your quick support! Though other parts of trunk seem to be broken atm, the new property code works perfectly for me now. While porting my app to 0.7 I still have some problems, e.g. using FCK editor as described in http://qooxdoo.org/documentation/0.7/snippets/using_fckedit

Re: [qooxdoo-devel] 0.7 properties: Object.get() no longer supported?

2007-06-06 Thread Sebastian Werner
Hubert, I've added both get() and reset() to trunk. You can use it like: obj.get("width"); or obj.reset("width"); The set() command also supports a new variant with: obj.set("width", 20); Hope this is ok for you... Just found out that the mail was not send. It was written however ~2 hours a

[qooxdoo-devel] Native WYSIWYG text editor in qooxdoo

2007-06-06 Thread frederic
Hello, It will be very nice to have a native WYSIWYG text editor widget in qooxdoo, I have read the Wiki : http://qooxdoo.org/documentation/general/html_editing (a survey !?) http://qooxdoo.org/community/wishlist http://qooxdoo.org/documentation/0.7/snippets/using_fckeditor_as_a_rich_text_editor_

Re: [qooxdoo-devel] 0.7 properties: Object.get() no longer supported?

2007-06-06 Thread Hubert Denkmair
Hi Sebastian, a simple Object.get("propertyName") would be sufficient. I did also use the Array and Map output options (can't believe nobody else did ;), but they're not critical to me as they are simple to emulate and not at all performance relevant in my case. Thanks, Hubert --- Sebastian Wern

[qooxdoo-devel] How to get rid of table doubleclick event? (v. 0.6.6)

2007-06-06 Thread westor
Hi List, as mentioned before, I have a problem with doubleclick in a tablecell, especially when I have specified the row as boolean with BooleanDataCellRenderer (After doubleclick the cell content is displayed as true or false while I'm in the cell. After leaving, the cell is empty.) Because I don

Re: [qooxdoo-devel] qooxdoo 0.7 released

2007-06-06 Thread Tobias Koller (GERMO GmbH)
Hm...i checked my incoming qooxdoo-mails and I didn't find the mail. But ok, I believe you ;) Thanks for your answer. Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Alex Back Gesendet: Mittwoch, 6. Juni 2007 11:50 An: qooxdoo Development

Re: [qooxdoo-devel] Default value of a property which has no init attribute in qx 0.7

2007-06-06 Thread Dietrich Streifert
Sebastian Werner schrieb: OK shouldn't the property system display an error if I try to refine the init value if no init value was defined before? Yes, ok this seems to be an issue. Can you mention this in the bug? Already done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=467#c3 -

Re: [qooxdoo-devel] Default value of a property which has no init attribute in qx 0.7

2007-06-06 Thread Sebastian Werner
Dietrich Streifert schrieb: > Hi Sebastian, > > Sebastian Werner schrieb: >>> Maybe someone of the core wizards can explain how the default behaviour is. >>> >>> I know I can find out how it works by simply trying it but then I don't >>> know if the results are intended or if it is a bug. >>> >>>

Re: [qooxdoo-devel] qooxdoo 0.7 released

2007-06-06 Thread Alex Back
Hi Tobias, Tobias Koller (GERMO GmbH) wrote: > Hi, > > why didn't anyone announce the release of qooxdoo 0.7 yesterday? Andreas did ;-) Maybe you overlooked the message. cheers, Alex "Good news, everyone! After some challenging development and intense testing, supported by excellent feedback

Re: [qooxdoo-devel] Refinement of initial value for property is ignored in qx. 0.7

2007-06-06 Thread Dietrich Streifert
Well then I'll add the init attribute of the properties "icon", "iconSelected" in AbstractTreeElement of Tree and TreeVirtual with a value of null which should'nt do any harm otherwise. Dietrich Streifert schrieb: > Hello List, > > I've derived a class from qx.ui.tree.TreeFolder which refines t

[qooxdoo-devel] qooxdoo 0.7 released

2007-06-06 Thread Tobias Koller (GERMO GmbH)
Hi, why didn't anyone announce the release of qooxdoo 0.7 yesterday? Tobias - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limi

Re: [qooxdoo-devel] Default value of a property which has no init attribute in qx 0.7

2007-06-06 Thread Dietrich Streifert
Hi Sebastian, Sebastian Werner schrieb: Maybe someone of the core wizards can explain how the default behaviour is. I know I can find out how it works by simply trying it but then I don't know if the results are intended or if it is a bug. Especially the fact that obviuosly (by trying) the i

Re: [qooxdoo-devel] 0.7 properties: Object.get() no longer supported?

2007-06-06 Thread Sebastian Werner
Hi Hubert, this feature was removed because it was never used and we have not got feedback that anybody was using it :) There is no easy other way. Maybe you can tell me what return value you need. Do you want a map as result. Or would be a simple no-list supporting getter useful like this.get

Re: [qooxdoo-devel] Default value of a property which has no init attribute in qx 0.7

2007-06-06 Thread Sebastian Werner
Dietrich Streifert schrieb: > Hello List, Hi Dietrich, > > What is the default value of a property which has no init attribute? > > If I define: > > prop1 : { >check : "String" > } > > I suppose that nullable is implicit false. Then the first call of the > getter would retrei

Re: [qooxdoo-devel] Demo Browser

2007-06-06 Thread Sebastian Werner
I think Thomas will continue the work on the demo browser as soon he has some time :) Sebastian Leander Hanwald schrieb: > Don't wait to long for it, the demos were the Nr. 1 learning base for > me, and I think for others, too :) > > (Ok, it's still possible, but in the past it was more easy t

Re: [qooxdoo-devel] SVN strategy for 0.8

2007-06-06 Thread Sebastian Werner
Hi Christian, the trunk will be used for the further development of the 0.7 milestone. There will be definitely at least one or two follow up bugfix versions of 0.7. 0.8 will be developed in trunk after the conception phase is done. This means that for at least the next two weeks the trunk is

Re: [qooxdoo-devel] Demo Browser

2007-06-06 Thread thron7
Agreed. If you have a wee look in the source code, you'll find there is already provision for that. I also added a bugzilla entry. =Thomas > Hello, > > the demo browser looks very nice! However, one thing is missing: you > cannot view the source code easily, like you can in demo browsers of > ot

[qooxdoo-devel] Default value of a property which has no init attribute in qx 0.7

2007-06-06 Thread Dietrich Streifert
Hello List, What is the default value of a property which has no init attribute? If I define: prop1 : { check : "String" } I suppose that nullable is implicit false. Then the first call of the getter would retreive the value null? This will give an implicit init attribute of nul

Re: [qooxdoo-devel] Translation not working

2007-06-06 Thread Christian Boulanger
Thanks Fabian, this is wierd. I'll try again after we have reorganized our file structure - maybe the problem lies there. Am I the only one experiencing this - have others been using the translation functionality successfully in their own custom applications? Thanks, Christian Fabian Jakobs w