Re: [qooxdoo-devel] Error when trying to show qx.ui.window.Window

2007-11-05 Thread Kirk Abbott
Thanks much. I finally got around the trying your suggestions (I was using hack to work around it). It works great. The minWidth, minHeight is the trick. Cheers, Kirk. Dioc wrote: > Hello Kirk, > > It is necessary to set minWidth and minHeight properties for the window to > avoid the error. Ch

Re: [qooxdoo-devel] Error when trying to show qx.ui.window.Window

2007-10-19 Thread Dioc
Hello Kirk, It is necessary to set minWidth and minHeight properties for the window to avoid the error. Change your code in create_buggy_tab function like this: var window1 = new qx.ui.window.Window("Test"); window1.set({ top: 100 , left: 100

[qooxdoo-devel] Error when trying to show qx.ui.window.Window

2007-10-18 Thread Kirk Abbott
Hello, I am trying to add some events to bring up a dialog (see line 150 and 176 of the attached code). The page has a tab which includes a table and a toolbar. I am using a verticallayout. The action that I am trying to invoke is attached to the Edit button on the toolbar. However, I get th