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
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
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
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
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:
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