Thanks very much for the help.
Also, the tree control examples seem to reference static data. Is there an
example of using a tree control while loading data dynamically? Thanks.
Joe
_____
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim Hunter
Sent: Saturday, March 24, 2007 1:14 PM
To: qooxdoo Development
Subject: Re: [qooxdoo-devel] a few newbie questions
You can put HTML inside almost any qooxdoo control. For a tab, place an Atom
inside it and put your HTML inside the Atom. Atoms are a great general
purpose control that can be used for all sorts of things.
My recommendation to you is to learn the 'skeleton' method of creating a
qooxdoo application and do things that way. It's a very good way of creating
an application. If you are not a programmer of some other common computer
language, but are just an HTML programmer, then you might have a little
trouble. It is geared towards general programmers who are used to creating
objects with properties and methods and programming in response to events.
There are some good sample applications that I would suggest that you take a
look at. Learn from others.
Jim
On 3/24/07, Joe Hudson <HYPERLINK "mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]>
wrote:
How would I put HTML content inside the tab? And, can all of the widgets be
used like this… or is the tab widget special in some way? The reason I ask
is because I'm trying to see if I can use qooxdoo as a javascript component
library. I don't yet understand really how to develop qooxdoo applications
the way they are meant to be developed because the API is a lot to get my
head around.
Could anybody tell me, if they use Java and Eclipse, how they set their
projects and what related technologies they use… this might help get me
started. Thank you very much for the help.
Joe Hudson
_____
From: HYPERLINK "mailto:[EMAIL PROTECTED]"
[EMAIL PROTECTED] [mailto:HYPERLINK
"mailto:[EMAIL PROTECTED]"
[EMAIL PROTECTED] On Behalf Of Joe Hudson
Sent: Saturday, March 24, 2007 8:57 AM
To: 'qooxdoo Development'
Subject: Re: [qooxdoo-devel] a few newbie questions
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: HYPERLINK "mailto:[EMAIL PROTECTED]"
[EMAIL PROTECTED] [mailto:HYPERLINK
"mailto:[EMAIL PROTECTED]" \n
[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]
[mailto:HYPERLINK "mailto:[EMAIL PROTECTED]" \n
[EMAIL PROTECTED] On Behalf Of
HYPERLINK "mailto:[EMAIL PROTECTED]"
[EMAIL PROTECTED]
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"
\nhttp://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"
\nhttp://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
HYPERLINK "mailto:[email protected]"
[EMAIL PROTECTED]
HYPERLINK "https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel"
\nhttps://lists.sourceforge.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
--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.17/731 - Release Date: 3/23/2007
3:27 PM
--
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
HYPERLINK
"http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV"
\nhttp://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"
\nhttps://lists.sourceforge.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/731 - Release Date: 3/23/2007
3:27 PM
--
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