Re: [qooxdoo-devel] How to pack() a window?

2007-10-16 Thread dperez
You can try setting the minWidth and minHeight properties of the window itself of any contained widget. Can you post an example? Daniel Gagnon wrote: I'm having trouble packing a window, it always resizes to a 1 pixel square. I tried to put a few auto for sizes but it doesn't change

Re: [qooxdoo-devel] How to pack() a window?

2007-10-16 Thread Dan
On 10/16/07, dperez [EMAIL PROTECTED] wrote: You can try setting the minWidth and minHeight properties of the window itself of any contained widget. Can you post an example? How can I set it so it computes itself based on what the widget need? Here's my code below, I just added a single

Re: [qooxdoo-devel] How to pack() a window?

2007-10-16 Thread Tim Kemna
I'm having the same problem. I think the problem is the call to centerToBrowser() before show(). In my code I use: window.open(); qx.ui.core.Widget.flushGlobalQueues(); window.centerToBrowser(); However, this has the problem of seeing a quick jump of the window from the top left position to the

Re: [qooxdoo-devel] How to pack() a window?

2007-10-16 Thread [EMAIL PROTECTED]
If your search the mailing list, you will find others having had the same problem. The solution that came up was to position the window far outside the visible area (e.g. setLeft(3)) and register for the appear event, where you call centerToBrowser(). That way you dont't have the jump effect.

[qooxdoo-devel] cldr_month_wide_10

2007-10-16 Thread Steen Jansdal
Hi, I'm evaluating qooxDoo to see if this is the right framework for our next project. Until now it's looking really promising. I've downloaded the quickstart apllication and I'm altering the Application.js to build the webpage I need for my application. When I insert a DateChooser some funny

Re: [qooxdoo-devel] Re size Image Depends on the System Resolution

2007-10-16 Thread deepakraj
Hi Denis, Thanks for ur reply. it works fine. But Image is not expanded automatically. i.e., Empty spaces are available around the Image. I need the Image ll be displayed and occupies the whole bodylayout automatically.(When the resolution changes). Here is the code I've used... bodyLayout = new

Re: [qooxdoo-devel] How to pack() a window?

2007-10-16 Thread Dan
On 10/16/07, Tim Kemna [EMAIL PROTECTED] wrote: I'm having the same problem. I think the problem is the call to centerToBrowser() before show(). In my code I use: If I remove centerToBrowser(). it packs to a single pixel in the top-left corner...

Re: [qooxdoo-devel] How to pack() a window?

2007-10-16 Thread Tim Kemna
This code works for me: window.setLeft(qx.ui.core.ClientDocument.getInstance().getClientWidth()) ; window.show(); window.addEventListener(appear, function(e) { window.centerToBrowser(); }, this); BTW I don't call pack() at all

Re: [qooxdoo-devel] PDF-Plugin Buttonview Problem IE 6/7

2007-10-16 Thread Tobias Koller (GERMO GmbH)
Hello, is there a workaround to hide the PDF-File (the pdf-plugin)? It's important for me. Thanks Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Jim Hunter Gesendet: Mittwoch, 19. September 2007 17:55 An: qooxdoo Development Betreff: Re: [qooxdoo-devel]

Re: [qooxdoo-devel] PDF-Plugin Buttonview Problem IE 6/7

2007-10-16 Thread Tobias Koller (GERMO GmbH)
Ok, maybe this is a workaround. Since I made it like this the pdf-disappears correctly: var docName = id + .pdf; var iframe = new qx.ui.embed.Iframe(); var path = this.settings[previewPath]; iframe.set( { width : 100%, height : 100%,

[qooxdoo-devel] JSON help

2007-10-16 Thread Bill Adams
All, I'm trying to use JSON for the first time. I want to have some configuration files for my application in JSON format. I looked at the wiki and the list archives, but did not find an example. Here is my offending code and the error, including the JSON text: var

Re: [qooxdoo-devel] JSON help

2007-10-16 Thread Peter Schneider
All, I'm trying to use JSON for the first time. I want to have some configuration files for my application in JSON format. I looked at the wiki and the list archives, but did not find an example. Here is my offending code and the error, including the JSON text:

Re: [qooxdoo-devel] JSON help

2007-10-16 Thread Bill Adams
Thanks! I thought I had a conceptual misunderstanding of JSON. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Schneider Sent: Tuesday, October 16, 2007 10:41 AM To: qooxdoo Development Subject: Re: [qooxdoo-devel] JSON help All, I'm

Re: [qooxdoo-devel] complex namespace issue

2007-10-16 Thread Jeremy Hahn
no bites? Jeremy Hahn wrote: Im just stepping into the world of qooxdoo (very nice!) and trying to use the hello world skeletion to load a custom namespace resource. i can get the app to work as long as its a single top level namespace (mycustom.foo) however, when i attempt to go

Re: [qooxdoo-devel] How to pack() a window?

2007-10-16 Thread Dan
On 10/16/07, Tim Kemna [EMAIL PROTECTED] wrote: This code works for me: window.setLeft(qx.ui.core.ClientDocument.getInstance().getClientWidth()); window.show(); window.addEventListener(appear, function(e) { window.centerToBrowser(); }, this); BTW I don't call

[qooxdoo-devel] How to add form object as onload/onclick events?

2007-10-16 Thread Sunny
Hi there, I want to add a qooxdoo form object at the time of html events outbreak(button onclick, body onload,...). Isn't there any good ideas? like example: html head meta http-equiv=Content-Type content=text/html; charset=UTF-8 titleqooxdoo/title script