Thank You to both German and Derrell, that line got it to work!
Harlan...
- Original Message -
From: "Germán Pablo Del Tedesco"
To: "Harlan H. Bloom" , "qooxdoo Development"
Sent: Sunday, February 5, 2012 6:07:18 PM
Subject: Re: [qooxdoo-devel
On Sun, Feb 5, 2012 at 17:39, Harlan H. Bloom
wrote:
> qx.Class.define("h4.Twitter",
> {
> extend : qx.ui.tabview.Page,
>
> construct : function()
> {
>this.base(arguments, "Twitter");
>
>// hide the window buttons
>this.setShowCloseButton(false);
>
> var layout = new qx.ui.layo
Hello!
After "*var layout = new qx.ui.layout.Basic();*" you need to assign the
layout to the tab: "*this.setLayout(layout);*". Or, in one line
"*this.setLayout(new
qx.ui.layout.Basic());*".
Regards,
Germán.
2012/2/5 Harlan H. Bloom
> Hello,
> This is continuing on with a different email thre
Hello,
This is continuing on with a different email thread. I need to create forms
inside each of the TabView pages. Here is the relevant section of code that I
have so far:
qx.Class.define("h4.Twitter",
{
extend : qx.ui.tabview.Page,
construct : function()
{
this.base(arguments, "Twi