[qooxdoo-devel] rename a treevirtual branch

2008-02-26 Thread Tim Taubert
Hello, in my application I have a treevirtual and implemented the renaming of a branch by using "prompt". This is a very ugly solution and I would like to do renaming in the cell of the branch, just like in e.g. win explorer where the branch label is replaced by a textedit. Is something like t

Re: [qooxdoo-devel] Permission denied to call method XMLHttpRequest.open

2008-02-09 Thread Tim Taubert
Thanks for all your answers.. I overthought your ideas and in the end I decided to use mod_mono on the same host. Seems to be way more stable than xsp2. Regards, Tim Helder Magalhães wrote: > > Derrell Lipman wrote: >> Whenever you attempt to work with multiple ports or servers, you're >> aski

[qooxdoo-devel] Permission denied to call method XMLHttpRequest.open

2008-02-06 Thread Tim Taubert
Hi, I have the following scenario: My Qooxdoo app is accessible via http://localhost/. From there I want to access a Mono/ASP.NET service running on localhost:8080. Every time I use qx.io.remote.Rpc firebug is displaying this error: "172595 ERROR: qx.io.remote.Exchange[468]: Request handler thro

Re: [qooxdoo-devel] window with only a table

2008-01-27 Thread Tim Taubert
urWindow.setMinHeight(null); > > Hope this helps. > > Sebastian > > > Am 27.01.2008 um 12:04 schrieb Tim Taubert: > >> Hi, >> >> I am trying to create an internal window with only a table inside. The >> table should always adjust to the window'

[qooxdoo-devel] window with only a table

2008-01-27 Thread Tim Taubert
Hi, I am trying to create an internal window with only a table inside. The table should always adjust to the window's size, not the other way around. If I set the table dimension to (100%, 100%) the table sets the window size. It is not possible to shrink the window lower than the table's dime

Re: [qooxdoo-devel] mdi application

2008-01-25 Thread Tim Taubert
Huge thanks Denis! This helped - now I have a working MDI style application :). Regards, Tim Dioc wrote: > Hello Tim, > > Try the following code. I hope it will help you. > > var layMain = new qx.ui.layout.HorizontalBoxLayout(); > layMain.setLeft(10); > layMain.setTop(10); > layMain.setRight(1

[qooxdoo-devel] mdi application

2008-01-25 Thread Tim Taubert
Hello, I would really appreciate if you could give me some help developing a MDI style application with Qooxdoo. I created a HorizontalBoxLayout with a TreeVirtual on the left and a content area on the right. The content area is the MDI style area where multiple windows should reside. I want t