Re: [qooxdoo-devel] Tree using RPC and PHP

2007-04-10 Thread Derrell . Lipman
[EMAIL PROTECTED] writes: > FrozenDice <[EMAIL PROTECTED]> writes: > >> Thanks, I am trying to populate a tree, virtual tree, or whatever I can get >> to work with data from a postgresql database. Now I know I'll have to use >> something other than RPC since I read more on what it actually is. M

Re: [qooxdoo-devel] Tree using RPC and PHP

2007-04-10 Thread Derrell . Lipman
FrozenDice <[EMAIL PROTECTED]> writes: > Also I want to be able to drag and drop leaves around. Any idea > how I can do this? I understand that drag & drop works well with TreeFullControl. See the wiki for documentation on how d&d works. I don't use it, so I can't explain it. Drag & drop does

Re: [qooxdoo-devel] Tree using RPC and PHP

2007-04-10 Thread Derrell . Lipman
FrozenDice <[EMAIL PROTECTED]> writes: > Thanks, I am trying to populate a tree, virtual tree, or whatever I can get > to work with data from a postgresql database. Now I know I'll have to use > something other than RPC since I read more on what it actually is. My > current idea is to have an ev

Re: [qooxdoo-devel] Changing the default background colour

2007-04-10 Thread Tom Hunter
Hi Alex, Thanks for your email. The output from the qx_log window is below. I should also note that I'm fairly sure the application is using my custom theme because if I override the appearance settings for a label, say setting the background colour to be blue, it works. It just doesn't seem to

Re: [qooxdoo-devel] application no longer initializes with recent trunk changes

2007-04-10 Thread Derrell . Lipman
Alex Back <[EMAIL PROTECTED]> writes: > Hi Derrell, > >> In my application, which used all three of initialize(), main() and >> finalize(), I tried calling this.initialize() at the beginning of main(), >> and >> this.finalize() at the end of main(), but the application no longer >> displays. > I'

Re: [qooxdoo-devel] Problem with focus

2007-04-10 Thread Jim Hunter
Caret has always referred to the little icon , usually an I-Bar or underscore, that is inside the line of text you are typing. Cursor refers to the icon that you move around the screen with the mouse. They are two distinct objects on the screen and if there is a text box or two in focus on a page,

Re: [qooxdoo-devel] Changing the default background colour

2007-04-10 Thread Alex Back
Hi Tom, the way you described should work. What is your output when you insert the following line in your main-method: this.debug(qx.manager.object.AppearanceManager.getInstance().getAppearanceTheme()); Just give it a shot. Maybe I can help you a little bit to track down this problem. cheers,

Re: [qooxdoo-devel] application no longer initializes with recent trunk changes

2007-04-10 Thread Alex Back
Hi Derrell, > In my application, which used all three of initialize(), main() and > finalize(), I tried calling this.initialize() at the beginning of main(), > and > this.finalize() at the end of main(), but the application no longer > displays. I've just tested this with the showcase application

Re: [qooxdoo-devel] Problem with focus

2007-04-10 Thread Bruno Hivert (QA/EMC)
Hello, We tried this fix, and it's working in Firefox 2.0.0.x (x <= 3): http://qooxdoo.org/documentation/snippets/show_caret_in_dialogs_in_ff?s= firefox%20bug It's a bit hard to find, because not everybody searches for "caret", but use "cursor" instead. I guess it depends on which side of which p

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

2007-04-10 Thread dperez
Your explanation is very useful. Thanks again Derrell. Here is the code for selecting any nodeId in a treevirtual: var row = mod.getNodeRowMap()[nodeId] tree.getSelectionModel().setSelectionInterval(row, row); Hope it will be useful to anybody else. Derrell.Lipman wrote: > > You may find