[qooxdoo-devel] Tango Icon Gallery

2007-03-21 Thread frederic
Hi all, I've just discovered a new icon collection called Tango using standard naming spec : http://tango.freedesktop.org/Tango_Icon_Gallery Why not add this new icon collection to qooxdoo ? best regards. frederic -- View this message in context: http://www.nabble.com/Tango-Icon-Gallery-tf34418

Re: [qooxdoo-devel] Possible bug in resize behaviour

2007-03-21 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > I have tested before submitting patch! Yes, but you didn't provide me a patch, you provided me an entire file, so I created a patch (and eliminated your ^M characters from end of line). Therefore what got checked in may (but shouldn't) vary from what you sent.

Re: [qooxdoo-devel] Possible bug in resize behaviour

2007-03-21 Thread dperez
I have tested before submitting patch! Derrell.Lipman wrote: > > I've checked in patched versions, but have not tested it. Would you > please > confirm that r6950 in the legacy_0_6_x branch works properly. > -- View this message in context: http://www.nabble.com/Possible-bug-in-resize-beha

Re: [qooxdoo-devel] Possible bug in resize behaviour

2007-03-21 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > I have seen that it is only fixed in version 0.7.x. > I have reapplied your changes to version 0.6.x > Here are the patched files: Huh? You mean someone is actually still using that ancient version of qooxdoo? :-) > http://www.nabble.com/file/7312/Table.js T

Re: [qooxdoo-devel] treevirtual questions

2007-03-21 Thread Derrell . Lipman
westor <[EMAIL PROTECTED]> writes: > at first thank you for quick answers and good support. Great work, I really > like the new widget. Thanks. > Opening root node: > Like I told you in my last post, if I call this: > nodeid = dataModel.addBranch(null, "root", true); > the event listener "treeOp

Re: [qooxdoo-devel] How to select an item in treevirtual

2007-03-21 Thread dperez
Again, I answer myself. ;-) The event is called correctly. I selected the item before registering the event handler. TreeVirtual._calculateSelectedNodes() shows the relationship between nodeId and row indexes. Maybe an API for easily selecting items could be made. So everything is answered. :

Re: [qooxdoo-devel] How to select an item in treevirtual

2007-03-21 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > I have this code to populate a treevirtual: > > var root = menu.getDataModel().addBranch(null, "Root", true); > // add more items > tree.getSelectionModel().setSelectionInterval(root, root); > > but I don't know how to initially select programm

Re: [qooxdoo-devel] How to select an item in treevirtual

2007-03-21 Thread dperez
tree.getSelectionModel().setSelectionInterval(0, 0) works (selects the root node) but the changeSelection event isn't fired. Never mind, I can call the event manually. dperez wrote: > > Hi, > > I have this code to populate a treevirtual: > > var root = tree.getDataModel().addBranch(n

Re: [qooxdoo-devel] Possible bug in resize behaviour

2007-03-21 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > The problem in your sample is that we are sharing the array object. > If instead of an array it were an integer or a string or any other atomic > value this wouldn't happen. Correct. The problem is with ANY property that has as its default value something tha

Re: [qooxdoo-devel] How to select an item in treevirtual

2007-03-21 Thread dperez
I made a small typo. Here is the code: var root = tree.getDataModel().addBranch(null, "Root", true); // add more items tree.getSelectionModel().setSelectionInterval(root, root); dperez wrote: > > Hi, > > I have this code to populate a treevirtual: > > var root = tree.

[qooxdoo-devel] How to select an item in treevirtual

2007-03-21 Thread dperez
Hi, I have this code to populate a treevirtual: var root = menu.getDataModel().addBranch(null, "Root", true); // add more items tree.getSelectionModel().setSelectionInterval(root, root); but I don't know how to initially select programmatically the root node. The code shown abov

Re: [qooxdoo-devel] Limiting width of a tooltip

2007-03-21 Thread dperez
Thankx. This is a possible solution, and I can insert the automatically after some fixed number of characters (respecting word boundaries). Maybe there is another solution playing with widget properties. Munkhzorig Bayasgalan wrote: > > I would prefer simply using some html; like ' ' where yo

[qooxdoo-devel] JSEclipse and the new OO syntax in qooxdoo 0.7: first contact with adobe!

2007-03-21 Thread Dietrich Streifert
Hello List, I recently created a new topic in the Adobe JSEclipse forum asking for support of the new OO syntax in qooxdoo 0.7. I got an answer from a JSEclipse team member: Hi level, It is in our plans to semantically supporting major frameworks like qooxdoo. We would need to download 0.7

Re: [qooxdoo-devel] Listener for table cells change

2007-03-21 Thread Alexander Weisser
Hi, thanks for that post. But now i have another problem. This eventhandler only get the new Value. I have an mysql-db where i load the data and show it into a table. If i use this event to update the table i get problems if something goes wrong. This event ever change the view. If i get an erro

Re: [qooxdoo-devel] problem with qx.ui.table

2007-03-21 Thread Hugh Gibson
> Can you post the answer please as I can't see the email you were > referring to. See this thread: http://www.nabble.com/bug-in-feedreader-demo-tf3386121.html#a9463583 My first answer didn't help because the way the simple table model reformats the data. You need to use the remote table model

Re: [qooxdoo-devel] MessageBox replacement

2007-03-21 Thread Hugh Gibson
> Here was my attempt to do so: > http://www.nabble.com/Simulating-alert%28%29-tf2566575.html#a7153538 > > Unluckily, I got no response from the community. :-( That's not functional now. You've just written a function qxAlert, but I think we need a class to handle it. It would give faciliti

Re: [qooxdoo-devel] Browser buttons and menues

2007-03-21 Thread Hugh Gibson
> The question was if there is any way to hide the menu and/or toolbar > of an existing browser window. I doubt whether this would ever be possible, due to security concerns. We open up a separate window after login, and remove everything we can. It's neater like that anyway like - like a sepa

Re: [qooxdoo-devel] Possible bug in resize behaviour

2007-03-21 Thread dperez
I have seen that it is only fixed in version 0.7.x. I have reapplied your changes to version 0.6.x Here are the patched files: http://www.nabble.com/file/7312/Table.js Table.js http://www.nabble.com/file/7313/ResizeTableColumnModel.js ResizeTableColumnModel.js Derrell.Lipman wrote: > > Your

Re: [qooxdoo-devel] Limiting width of a tooltip

2007-03-21 Thread Munkhzorig Bayasgalan
I would prefer simply using some html; like ' ' where you want to wrap. I mean; var tip = new qx.ui.popup.ToolTip('a really very very verylong long long tooltip'); Regards, On 3/20/07, dperez <[EMAIL PROTECTED]> wrote: Hi, I have this code: var tip = new qx.ui.popup.ToolTip('a really

Re: [qooxdoo-devel] Links to living QOOXDOO projects

2007-03-21 Thread Andreas Ecker
Hi! Manuel Bender wrote: > westor schrieb: > > Hi list, > > > > I think someone asked this question before, but it was in the deepness of a > > thread. So I pick up the idea and enhance this a little bit. > > Is there already a webpage with a directory of living qooxdoo projects? > > If it is not,

Re: [qooxdoo-devel] treevirtual questions

2007-03-21 Thread westor
Hi Derell, at first thank you for quick answers and good support. Great work, I really like the new widget. Opening root node: Like I told you in my last post, if I call this: nodeid = dataModel.addBranch(null, "root", true); the event listener "treeOpenWhileEmpty" is NOT called, thats my proble

Re: [qooxdoo-devel] Possible bug in resize behaviour

2007-03-21 Thread dperez
Very good Derrell! :-) The problem in your sample is that we are sharing the array object. If instead of an array it were an integer or a string or any other atomic value this wouldn't happen. Derrell.Lipman wrote: > > This could be a real problem if, > for example, one created a class with a