Re: [qooxdoo-devel] Table in Window not getting Tab keypress

2012-10-11 Thread Daniel Wagner
Window registers itself as a focus root in the constructor: qx.ui.core.FocusHandler.getInstance().addRoot(this); That affects the Tab handling so it might be the right place to start looking. Regards, Daniel On 10/09/2012 08:03 PM, Jim Hunter wrote: > I am doing some custom handling of keystro

[qooxdoo-devel] Table in Window not getting Tab keypress

2012-10-09 Thread Jim Hunter
I am doing some custom handling of keystrokes inside of a table I have created. If I test my code in the playground I am able to capture the Tab key and process it. But when I am using the table in my application, and the table is inside a popup Window, my table never gets the Tab key. Instead, the

Re: [qooxdoo-devel] Table in Window of minimal size

2010-03-08 Thread Fabian Jakobs
Hi Fritz, > I'd like to open a qx.ui.window.Window with a vbox layout and a > qx.ui.table.Table inside, so that the table use the minimal vertical size to > show all rows of the table (and not more). I tried all kinds of combinations > of maxHeight, allowGrowY, allowShrinkY, allowStretchY on both t

[qooxdoo-devel] Table in Window of minimal size

2010-03-08 Thread Fritz Zaucker
Hi, I'd like to open a qx.ui.window.Window with a vbox layout and a qx.ui.table.Table inside, so that the table use the minimal vertical size to show all rows of the table (and not more). I tried all kinds of combinations of maxHeight, allowGrowY, allowShrinkY, allowStretchY on both the window and

Re: [qooxdoo-devel] table in window

2007-07-18 Thread Jim Hunter
You know you can set a maxWidth for both the layout and for the table? If you set a maxWidth for the table it will not stretch, it will create a horizontal scrollbar to show the 'hidden' contents to the right. Jim www.D4PHP.org www.D4PHP-Hosting.com On 7/18/07, asaris <[EMAIL PROTECTED]> wrote:

[qooxdoo-devel] table in window

2007-07-18 Thread asaris
Hi all, I have table with many columns inside window and table stretches window width (even if i set maxwidth for window), but I don't want it to do it. I want table to auto-overflow if its content width is bigger than boxlayout width and boxlayout width depends on window width, not on table w