Oh, this is great… this is exactly what I was trying to do. Thanks.
Out of curiosity, are you the same Jim Hunter that is pretty active around
the activewidgets product?
Joe Hudson
_____
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim Hunter
Sent: Friday, March 23, 2007 2:25 PM
To: qooxdoo Development
Subject: Re: [qooxdoo-devel] a few newbie questions
Joe,
Here is an example of how to place a TabView on a regular HTML page. This
was done using qooxdoo 6.5. Create a DIV, give the DIV an ID, then create
your qooxdoo controls and place them in the DIV. You can place the DIV
anywhere on the page you want using absolute positioning. Make sure that you
have a call in the HEAD of the page to load the qooxdoo library.
<div id="PageControl1"></div>
<script type="text/javascript">
var d = qx.ui.core.ClientDocument.getInstance();
var inline_div = new qx.ui.basic.Inline("PageControl1");
inline_div.setHeight("auto");
inline_div.setWidth("auto");
var PageControl1 = new qx.ui.pageview.tabview.TabView;
PageControl1.setLeft(0);
PageControl1.setTop(0);
PageControl1.setWidth (330);
PageControl1.setHeight(196);
PageControl1.setPlaceBarOnTop(true);
var tabPageControl1_1 = new qx.ui.pageview.tabview.Button("Tab 1");
tabPageControl1_1.setChecked(true);
PageControl1.getBar ().add(tabPageControl1_1);
var pagePageControl1_1 = new
qx.ui.pageview.tabview.Page(tabPageControl1_1);
PageControl1.getPane().add(pagePageControl1_1);
PageControl1.setVisibility(true);
d.add(inline_div);
inline_div.add(PageControl1);
</script>
Jim
On 3/23/07, Joe Hudson <HYPERLINK "mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]
> wrote:
Thank you all very much for your help in getting me started.
Joe
-----Original Message-----
From: HYPERLINK
"mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]
sts.sourceforge.net
[mailto:HYPERLINK "mailto:[EMAIL PROTECTED]"
[EMAIL PROTECTED] On Behalf Of
HYPERLINK
"mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]
m
Sent: Thursday, March 22, 2007 11:43 PM
To: qooxdoo Development
Subject: Re: [qooxdoo-devel] a few newbie questions
"Joe Hudson" <HYPERLINK "mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]> writes:
> Hello, Im new to this project
Welcome!
> - How can I see the source for the demonstrated applications (api
> viewer, showcase) in a non-compressed format?
Just download the SDK. HYPERLINK
"http://qooxdoo.org/download#sdk"http://qooxdoo.org/download#sdk Under
frontend/application, the api viewer and showcase are under (duh!) apiviewer
and showcase, respectively. The examples are under
sample/source/html/example.
> - This seems to be a all or nothing thing, right? Can I use qooxdoo
> inside islands to display stuff I cant figure out how to write with
qooxdoo
> in HTML?
qooxdoo wants to control the page. It's easy to embed HTML in a portion of
a
page written with qooxdoo; not quite so easy to embed qooxdoo into a portion
of an arbitrary HTML app. If you can allocate a frame for the qooxdoo
portion, it becomes easy. That isn't always reasonable, though. There has
been a bit of talk of a "lightweight qooxdoo" (my term; I don't recall how
it
was called in the discussion) that would make it easy to do what you
request,
but that's for some point in the future.
> - Does the list widget support real-time paging (while someone is
> scrolling, page requests are made to the back end to populate later list
> data)?
The List widget does not, but the Table widget does. Most uses of the List
widget can be implemented easily with the very powerful Table widget. The
Table widget is very fast with large lists, as it only renders the currently
visible rows. (Rendering large lists is *really* slow, particularly in IE.)
> - Is there an auto-completer text box widget?
No, but code contributions are welcome! :-)
Cheers,
Derrell
--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.17/730 - Release Date: 3/22/2007
7:44 AM
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.17/730 - Release Date: 3/22/2007
7:44 AM
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
HYPERLINK
"http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV"h
ttp://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
HYPERLINK
"mailto:[email protected]"[EMAIL PROTECTED]
net
HYPERLINK
"https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel"https://lists.so
urceforge.net/lists/listinfo/qooxdoo-devel
--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.17/730 - Release Date: 3/22/2007
7:44 AM
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.17/731 - Release Date: 3/23/2007
3:27 PM
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel