Re: [qooxdoo-devel] Pages in separate files/classes for TabView

2012-02-02 Thread Harlan H. Bloom
ooxdoo-devel@lists.sourceforge.net Sent: Thursday, February 2, 2012 8:07:25 AM Subject: Re: [qooxdoo-devel] Pages in separate files/classes for TabView Hi I do this all the time. I create a TabView or what I am use to calling a pageFrame (pgfStd) and the pages. Then on each page I set the property dc

Re: [qooxdoo-devel] Pages in separate files/classes for TabView

2012-02-02 Thread Simon White
Hi I do this all the time. I create a TabView or what I am use to calling a pageFrame (pgfStd) and the pages. Then on each page I set the property dcClass to the class name that will be loaded when the tabPage is activated. this.add(this.__pgfStd,{top: "0%", left: "0%", width: "100%",height:

Re: [qooxdoo-devel] Pages in separate files/classes for TabView

2012-02-02 Thread Derrell Lipman
On Thu, Feb 2, 2012 at 08:05, Harlan H. Bloom wrote: > Hi Fritz, > Here is part of what I have. I've taken them from a couple different > examples and trying to piece them together since I haven't been able to > find a single example; likely I've got something not quite right. > > Application.js

Re: [qooxdoo-devel] Pages in separate files/classes for TabView

2012-02-02 Thread Harlan H. Bloom
witter" page file, or something in the page file itself? Thanks, Harlan... - Original Message - From: "Fritz Zaucker" To: "Harlan H. Bloom" , "qooxdoo Development" Sent: Thursday, February 2, 2012 1:10:54 AM Subject: Re: [qooxdoo-devel] Page

Re: [qooxdoo-devel] Pages in separate files/classes for TabView

2012-02-01 Thread Fritz Zaucker
Harlan, you can just extend qx.ui.tabview qx.Class.define("my.tabviewPage", { extend : qx.ui.tabview.Page, ... ... }); and then in your TabView class do this.add(new my.tabview.Page); Cheers, Fritz On Wed, 1 Feb 2012, Harlan H. Bloom wrote: > Hello, > I'm trying to use TabVie

[qooxdoo-devel] Pages in separate files/classes for TabView

2012-02-01 Thread Harlan H. Bloom
Hello, I'm trying to use TabView and to define the pages in separate files/classes. The only examples I've seen are where the pages are in-line with the TabView. Anyone have any idea where I can find an example where the TabView is separate from its pages? Thanks, Harlan... --