You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Hugo Palma <hu...@gmail.com> on 2006/05/29 13:11:23 UTC

Component Tab with AJAX

I've looked but couldn't find any component that provides a TabPanel(like
the example in Tapestry site) using AJAX so that the whole page doesn't get
loaded when i change tabs.
I think it could be donne using tacos:AjaxDirectLink instead of
framework:DirectLink like the example, but if someone knows if such a
implementation already exists could you please direct me to it.


Cheers

Hugo

Re: Component Tab with AJAX

Posted by Peter Svensson <ps...@gmail.com>.
Great! Thanks!

/PS

On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
>
> Yes, the demo site has been up and down (it's where i am
> building/testing) the tab panel right now.  The new tab component will
> be on the demo site.
> I just got it working the way I want it to (css and javascript hell for
> the client side).
>
> I will update the docs and create some binaries to download.  I am going
> to create 2 sets of binaries, one for the set of components that require
> no dependencies outside tapestry/hivemind, and another jar that will
> contain the components that you need additional libs for...
>
> I will shoot out an email when you can download the jars (later today)
> and check out the demo site.
>
>
> Hugo Palma wrote:
>
> > That's great news......As soon as i find some free time i'll take a
> > deeper
> > look into it, in the mean time i can't access the demo site, is it
> > down ? Do
> > you have a demo of the tab panel component in the site ?
> >
> > On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> >
> >>
> >> I am literally working on a tab panel component right now (just stopped
> >> to check out the list).
> >>
> >> I was thinking about AJAX support.  Right now, it supports a
> >> simultaneous mixture of client and serverside tabs in the same tabset.
> >> other features include disabling, hiding, etc... of individual tabs.
> >> I will wrap development up today since I need this on a bunch of
> >> projects.   It will be in stitches (a tapestry library).
> >> You could use the client side tab for now, and help me implement the
> >> ajax one;)
> >> Let me know your thoughts.
> >>
> >> Hugo Palma wrote:
> >>
> >> > I've looked but couldn't find any component that provides a
> >> TabPanel(like
> >> > the example in Tapestry site) using AJAX so that the whole page
> >> > doesn't get
> >> > loaded when i change tabs.
> >> > I think it could be donne using tacos:AjaxDirectLink instead of
> >> > framework:DirectLink like the example, but if someone knows if such a
> >> > implementation already exists could you please direct me to it.
> >> >
> >> >
> >> > Cheers
> >> >
> >> > Hugo
> >> >
> >>
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Component Tab with AJAX

Posted by Pedro Viegas <pv...@gmail.com>.
I have adapted Sam's component for my own use also.
Woks perfectly.
For the AJAX enabling part of what Hugo said, since it is allready "DIV
based", you can simply add, like you said, a tacos:AjaxDirectLink with the
correct updateComponent to the desired DIV before the tab change.
I didn't look much further on this, but I'm sure you can add this to the tab
change's normal event method that dojo's TabContainer provides. (one more "
dojo.event.connect(...)").

Regards,

On 5/29/06, Sam Gendler <sg...@ideasculptor.com> wrote:
>
> I've got a component that wraps the dojo TabContainer widget.  I
> haven't had a chance to tacos-ify it yet, and commit it to tacos, but
> I could zip up some source and post a copy here which should be easy
> enough to replace with the official tacos version sometime later.
> Currently, you just define a div for each tab, and then specify an
> ognl list of div names which should be added to your tabcontainer.
> The labels are looked up in the properties of the page, where the
> property name is the same as the div name.  It is pretty simple but it
> works like a charm.
>
> --sam
>
>
> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > The tab component on steroids is ready.
> >
> > Supports client-side and serverside switching (in the same tabset),
> > hiding tabs, enabling/disabling tabs.  There is a demo of the tab up and
> > running.
> > Let me know if there are any problems/enhancements....
> > http://stitches.authsum.org
> >
> > This tab was originally based on the tabset component(found on tassel).
> > I ported it to T4 and added several bells and whistles.
> >
> >
> >
> > spamsucks wrote:
> >
> > > Yes, the demo site has been up and down (it's where i am
> > > building/testing) the tab panel right now.  The new tab component will
> > > be on the demo site.
> > > I just got it working the way I want it to (css and javascript hell
> > > for the client side).
> > >
> > > I will update the docs and create some binaries to download.  I am
> > > going to create 2 sets of binaries, one for the set of components that
> > > require no dependencies outside tapestry/hivemind, and another jar
> > > that will contain the components that you need additional libs for...
> > >
> > > I will shoot out an email when you can download the jars (later today)
> > > and check out the demo site.
> > >
> > >
> > > Hugo Palma wrote:
> > >
> > >> That's great news......As soon as i find some free time i'll take a
> > >> deeper
> > >> look into it, in the mean time i can't access the demo site, is it
> > >> down ? Do
> > >> you have a demo of the tab panel component in the site ?
> > >>
> > >> On 5/29/06, spamsucks <spamsucks@rhoderunner.com > wrote:
> > >>
> > >>>
> > >>> I am literally working on a tab panel component right now (just
> stopped
> > >>> to check out the list).
> > >>>
> > >>> I was thinking about AJAX support.  Right now, it supports a
> > >>> simultaneous mixture of client and serverside tabs in the same
> tabset.
> > >>> other features include disabling, hiding, etc... of individual tabs.
> > >>> I will wrap development up today since I need this on a bunch of
> > >>> projects.   It will be in stitches (a tapestry library).
> > >>> You could use the client side tab for now, and help me implement the
> > >>> ajax one;)
> > >>> Let me know your thoughts.
> > >>>
> > >>> Hugo Palma wrote:
> > >>>
> > >>> > I've looked but couldn't find any component that provides a
> > >>> TabPanel(like
> > >>> > the example in Tapestry site) using AJAX so that the whole page
> > >>> > doesn't get
> > >>> > loaded when i change tabs.
> > >>> > I think it could be donne using tacos:AjaxDirectLink instead of
> > >>> > framework:DirectLink like the example, but if someone knows if
> such a
> > >>> > implementation already exists could you please direct me to it.
> > >>> >
> > >>> >
> > >>> > Cheers
> > >>> >
> > >>> > Hugo
> > >>> >
> > >>>
> > >>>
> > >>>
> > >>>
> ---------------------------------------------------------------------
> > >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > >>> For additional commands, e-mail: users-help@tapestry.apache.org
> > >>>
> > >>>
> > >>
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > For additional commands, e-mail: users-help@tapestry.apache.org
> > >
> > >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


-- 
Pedro Viegas

Re: Component Tab with AJAX

Posted by Sam Gendler <sg...@ideasculptor.com>.
I've got a component that wraps the dojo TabContainer widget.  I
haven't had a chance to tacos-ify it yet, and commit it to tacos, but
I could zip up some source and post a copy here which should be easy
enough to replace with the official tacos version sometime later.
Currently, you just define a div for each tab, and then specify an
ognl list of div names which should be added to your tabcontainer.
The labels are looked up in the properties of the page, where the
property name is the same as the div name.  It is pretty simple but it
works like a charm.

--sam


On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> The tab component on steroids is ready.
>
> Supports client-side and serverside switching (in the same tabset),
> hiding tabs, enabling/disabling tabs.  There is a demo of the tab up and
> running.
> Let me know if there are any problems/enhancements....
> http://stitches.authsum.org
>
> This tab was originally based on the tabset component(found on tassel).
> I ported it to T4 and added several bells and whistles.
>
>
>
> spamsucks wrote:
>
> > Yes, the demo site has been up and down (it's where i am
> > building/testing) the tab panel right now.  The new tab component will
> > be on the demo site.
> > I just got it working the way I want it to (css and javascript hell
> > for the client side).
> >
> > I will update the docs and create some binaries to download.  I am
> > going to create 2 sets of binaries, one for the set of components that
> > require no dependencies outside tapestry/hivemind, and another jar
> > that will contain the components that you need additional libs for...
> >
> > I will shoot out an email when you can download the jars (later today)
> > and check out the demo site.
> >
> >
> > Hugo Palma wrote:
> >
> >> That's great news......As soon as i find some free time i'll take a
> >> deeper
> >> look into it, in the mean time i can't access the demo site, is it
> >> down ? Do
> >> you have a demo of the tab panel component in the site ?
> >>
> >> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> >>
> >>>
> >>> I am literally working on a tab panel component right now (just stopped
> >>> to check out the list).
> >>>
> >>> I was thinking about AJAX support.  Right now, it supports a
> >>> simultaneous mixture of client and serverside tabs in the same tabset.
> >>> other features include disabling, hiding, etc... of individual tabs.
> >>> I will wrap development up today since I need this on a bunch of
> >>> projects.   It will be in stitches (a tapestry library).
> >>> You could use the client side tab for now, and help me implement the
> >>> ajax one;)
> >>> Let me know your thoughts.
> >>>
> >>> Hugo Palma wrote:
> >>>
> >>> > I've looked but couldn't find any component that provides a
> >>> TabPanel(like
> >>> > the example in Tapestry site) using AJAX so that the whole page
> >>> > doesn't get
> >>> > loaded when i change tabs.
> >>> > I think it could be donne using tacos:AjaxDirectLink instead of
> >>> > framework:DirectLink like the example, but if someone knows if such a
> >>> > implementation already exists could you please direct me to it.
> >>> >
> >>> >
> >>> > Cheers
> >>> >
> >>> > Hugo
> >>> >
> >>>
> >>>
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >>> For additional commands, e-mail: users-help@tapestry.apache.org
> >>>
> >>>
> >>
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Component Tab with AJAX

Posted by Hugo Palma <hu...@gmail.com>.
Cool, thanks.....

On 5/30/06, Sam Gendler <sg...@ideasculptor.com> wrote:
>
> > Still, i have one question. Is it possible with your component to have
> tabs
> > in a separate page/component ?
>
> Currently, no, but it will be getting an update that will likely allow
> it.  Currently, the content of any tab is just the content of a div in
> the same page, and the ids of the necessary divs are passed to the
> component as a parameter.  However, I have a version in the works
> which actually defines ContentPane components which can then be
> included in TabContainer or AccordionContainer, and I don't think it
> would be a huge hack to make those ContentPane components come from
> another page.
>
> --sam
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Component Tab with AJAX

Posted by Sam Gendler <sg...@ideasculptor.com>.
> Still, i have one question. Is it possible with your component to have tabs
> in a separate page/component ?

Currently, no, but it will be getting an update that will likely allow
it.  Currently, the content of any tab is just the content of a div in
the same page, and the ids of the necessary divs are passed to the
component as a parameter.  However, I have a version in the works
which actually defines ContentPane components which can then be
included in TabContainer or AccordionContainer, and I don't think it
would be a huge hack to make those ContentPane components come from
another page.

--sam

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Component Tab with AJAX

Posted by Hugo Palma <hu...@gmail.com>.
I haven't seen the source, but i will as soon as i can find some time to do
so.

Still, i have one question. Is it possible with your component to have tabs
in a separate page/component ?

On 5/30/06, Sam Gendler <sg...@ideasculptor.com> wrote:
>
> I have checked the tab component into tacos trunk, so if you build
> from svn, you should get a tab component which has had some
> improvement since the version you are playing with.  It will get a
> larger update sometime later this week.
>
> I also added dojo accordion and dojo content pane, as well as a
> slider.  All have demos in the tacos demo app, although it is not
> published ot the public server yet, so you will have to build from
> source.
>
> --sam
>
>
> On 5/30/06, Hugo Palma <hu...@gmail.com> wrote:
> > I think it might have something to do with the firewall i'm behind. I'll
> try
> > from home later.
> >
> > On 5/30/06, Peter Svensson <ps...@gmail.com> wrote:
> > >
> > > Hmm. It works for me. Strange.
> > >
> > > /PS
> > >
> > > On 5/30/06, Hugo Palma <hu...@gmail.com> wrote:
> > > >
> > > > Still can't see it. It takes forever to load and then i just get a
> blank
> > > > screen.
> > > >
> > > > On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > > > >
> > > > > The tab component on steroids is ready.
> > > > >
> > > > > Supports client-side and serverside switching (in the same
> tabset),
> > > > > hiding tabs, enabling/disabling tabs.  There is a demo of the tab
> up
> > > and
> > > > > running.
> > > > > Let me know if there are any problems/enhancements....
> > > > > http://stitches.authsum.org
> > > > >
> > > > > This tab was originally based on the tabset component(found on
> > > tassel).
> > > > > I ported it to T4 and added several bells and whistles.
> > > > >
> > > > >
> > > > >
> > > > > spamsucks wrote:
> > > > >
> > > > > > Yes, the demo site has been up and down (it's where i am
> > > > > > building/testing) the tab panel right now.  The new tab
> component
> > > will
> > > > > > be on the demo site.
> > > > > > I just got it working the way I want it to (css and javascript
> hell
> > > > > > for the client side).
> > > > > >
> > > > > > I will update the docs and create some binaries to download.  I
> am
> > > > > > going to create 2 sets of binaries, one for the set of
> components
> > > that
> > > > > > require no dependencies outside tapestry/hivemind, and another
> jar
> > > > > > that will contain the components that you need additional libs
> > > for...
> > > > > >
> > > > > > I will shoot out an email when you can download the jars (later
> > > today)
> > > > > > and check out the demo site.
> > > > > >
> > > > > >
> > > > > > Hugo Palma wrote:
> > > > > >
> > > > > >> That's great news......As soon as i find some free time i'll
> take a
> > > > > >> deeper
> > > > > >> look into it, in the mean time i can't access the demo site, is
> it
> > > > > >> down ? Do
> > > > > >> you have a demo of the tab panel component in the site ?
> > > > > >>
> > > > > >> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > > > > >>
> > > > > >>>
> > > > > >>> I am literally working on a tab panel component right now
> (just
> > > > > stopped
> > > > > >>> to check out the list).
> > > > > >>>
> > > > > >>> I was thinking about AJAX support.  Right now, it supports a
> > > > > >>> simultaneous mixture of client and serverside tabs in the same
> > > > tabset.
> > > > > >>> other features include disabling, hiding, etc... of individual
> > > tabs.
> > > > > >>> I will wrap development up today since I need this on a bunch
> of
> > > > > >>> projects.   It will be in stitches (a tapestry library).
> > > > > >>> You could use the client side tab for now, and help me
> implement
> > > the
> > > > > >>> ajax one;)
> > > > > >>> Let me know your thoughts.
> > > > > >>>
> > > > > >>> Hugo Palma wrote:
> > > > > >>>
> > > > > >>> > I've looked but couldn't find any component that provides a
> > > > > >>> TabPanel(like
> > > > > >>> > the example in Tapestry site) using AJAX so that the whole
> page
> > > > > >>> > doesn't get
> > > > > >>> > loaded when i change tabs.
> > > > > >>> > I think it could be donne using tacos:AjaxDirectLink instead
> of
> > > > > >>> > framework:DirectLink like the example, but if someone knows
> if
> > > > such
> > > > > a
> > > > > >>> > implementation already exists could you please direct me to
> it.
> > > > > >>> >
> > > > > >>> >
> > > > > >>> > Cheers
> > > > > >>> >
> > > > > >>> > Hugo
> > > > > >>> >
> > > > > >>>
> > > > > >>>
> > > > > >>>
> > > > > >>>
> > > >
> ---------------------------------------------------------------------
> > > > > >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > > > >>> For additional commands, e-mail:
> users-help@tapestry.apache.org
> > > > > >>>
> > > > > >>>
> > > > > >>
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > > > > For additional commands, e-mail: users-help@tapestry.apache.org
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > > > For additional commands, e-mail: users-help@tapestry.apache.org
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Component Tab with AJAX

Posted by Sam Gendler <sg...@ideasculptor.com>.
I have checked the tab component into tacos trunk, so if you build
from svn, you should get a tab component which has had some
improvement since the version you are playing with.  It will get a
larger update sometime later this week.

I also added dojo accordion and dojo content pane, as well as a
slider.  All have demos in the tacos demo app, although it is not
published ot the public server yet, so you will have to build from
source.

--sam


On 5/30/06, Hugo Palma <hu...@gmail.com> wrote:
> I think it might have something to do with the firewall i'm behind. I'll try
> from home later.
>
> On 5/30/06, Peter Svensson <ps...@gmail.com> wrote:
> >
> > Hmm. It works for me. Strange.
> >
> > /PS
> >
> > On 5/30/06, Hugo Palma <hu...@gmail.com> wrote:
> > >
> > > Still can't see it. It takes forever to load and then i just get a blank
> > > screen.
> > >
> > > On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > > >
> > > > The tab component on steroids is ready.
> > > >
> > > > Supports client-side and serverside switching (in the same tabset),
> > > > hiding tabs, enabling/disabling tabs.  There is a demo of the tab up
> > and
> > > > running.
> > > > Let me know if there are any problems/enhancements....
> > > > http://stitches.authsum.org
> > > >
> > > > This tab was originally based on the tabset component(found on
> > tassel).
> > > > I ported it to T4 and added several bells and whistles.
> > > >
> > > >
> > > >
> > > > spamsucks wrote:
> > > >
> > > > > Yes, the demo site has been up and down (it's where i am
> > > > > building/testing) the tab panel right now.  The new tab component
> > will
> > > > > be on the demo site.
> > > > > I just got it working the way I want it to (css and javascript hell
> > > > > for the client side).
> > > > >
> > > > > I will update the docs and create some binaries to download.  I am
> > > > > going to create 2 sets of binaries, one for the set of components
> > that
> > > > > require no dependencies outside tapestry/hivemind, and another jar
> > > > > that will contain the components that you need additional libs
> > for...
> > > > >
> > > > > I will shoot out an email when you can download the jars (later
> > today)
> > > > > and check out the demo site.
> > > > >
> > > > >
> > > > > Hugo Palma wrote:
> > > > >
> > > > >> That's great news......As soon as i find some free time i'll take a
> > > > >> deeper
> > > > >> look into it, in the mean time i can't access the demo site, is it
> > > > >> down ? Do
> > > > >> you have a demo of the tab panel component in the site ?
> > > > >>
> > > > >> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > > > >>
> > > > >>>
> > > > >>> I am literally working on a tab panel component right now (just
> > > > stopped
> > > > >>> to check out the list).
> > > > >>>
> > > > >>> I was thinking about AJAX support.  Right now, it supports a
> > > > >>> simultaneous mixture of client and serverside tabs in the same
> > > tabset.
> > > > >>> other features include disabling, hiding, etc... of individual
> > tabs.
> > > > >>> I will wrap development up today since I need this on a bunch of
> > > > >>> projects.   It will be in stitches (a tapestry library).
> > > > >>> You could use the client side tab for now, and help me implement
> > the
> > > > >>> ajax one;)
> > > > >>> Let me know your thoughts.
> > > > >>>
> > > > >>> Hugo Palma wrote:
> > > > >>>
> > > > >>> > I've looked but couldn't find any component that provides a
> > > > >>> TabPanel(like
> > > > >>> > the example in Tapestry site) using AJAX so that the whole page
> > > > >>> > doesn't get
> > > > >>> > loaded when i change tabs.
> > > > >>> > I think it could be donne using tacos:AjaxDirectLink instead of
> > > > >>> > framework:DirectLink like the example, but if someone knows if
> > > such
> > > > a
> > > > >>> > implementation already exists could you please direct me to it.
> > > > >>> >
> > > > >>> >
> > > > >>> > Cheers
> > > > >>> >
> > > > >>> > Hugo
> > > > >>> >
> > > > >>>
> > > > >>>
> > > > >>>
> > > > >>>
> > > ---------------------------------------------------------------------
> > > > >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > > >>> For additional commands, e-mail: users-help@tapestry.apache.org
> > > > >>>
> > > > >>>
> > > > >>
> > > > >
> > > > >
> > > > >
> > > > >
> > ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > > > For additional commands, e-mail: users-help@tapestry.apache.org
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > > For additional commands, e-mail: users-help@tapestry.apache.org
> > > >
> > > >
> > >
> > >
> >
> >
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Component Tab with AJAX

Posted by Hugo Palma <hu...@gmail.com>.
I think it might have something to do with the firewall i'm behind. I'll try
from home later.

On 5/30/06, Peter Svensson <ps...@gmail.com> wrote:
>
> Hmm. It works for me. Strange.
>
> /PS
>
> On 5/30/06, Hugo Palma <hu...@gmail.com> wrote:
> >
> > Still can't see it. It takes forever to load and then i just get a blank
> > screen.
> >
> > On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > >
> > > The tab component on steroids is ready.
> > >
> > > Supports client-side and serverside switching (in the same tabset),
> > > hiding tabs, enabling/disabling tabs.  There is a demo of the tab up
> and
> > > running.
> > > Let me know if there are any problems/enhancements....
> > > http://stitches.authsum.org
> > >
> > > This tab was originally based on the tabset component(found on
> tassel).
> > > I ported it to T4 and added several bells and whistles.
> > >
> > >
> > >
> > > spamsucks wrote:
> > >
> > > > Yes, the demo site has been up and down (it's where i am
> > > > building/testing) the tab panel right now.  The new tab component
> will
> > > > be on the demo site.
> > > > I just got it working the way I want it to (css and javascript hell
> > > > for the client side).
> > > >
> > > > I will update the docs and create some binaries to download.  I am
> > > > going to create 2 sets of binaries, one for the set of components
> that
> > > > require no dependencies outside tapestry/hivemind, and another jar
> > > > that will contain the components that you need additional libs
> for...
> > > >
> > > > I will shoot out an email when you can download the jars (later
> today)
> > > > and check out the demo site.
> > > >
> > > >
> > > > Hugo Palma wrote:
> > > >
> > > >> That's great news......As soon as i find some free time i'll take a
> > > >> deeper
> > > >> look into it, in the mean time i can't access the demo site, is it
> > > >> down ? Do
> > > >> you have a demo of the tab panel component in the site ?
> > > >>
> > > >> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > > >>
> > > >>>
> > > >>> I am literally working on a tab panel component right now (just
> > > stopped
> > > >>> to check out the list).
> > > >>>
> > > >>> I was thinking about AJAX support.  Right now, it supports a
> > > >>> simultaneous mixture of client and serverside tabs in the same
> > tabset.
> > > >>> other features include disabling, hiding, etc... of individual
> tabs.
> > > >>> I will wrap development up today since I need this on a bunch of
> > > >>> projects.   It will be in stitches (a tapestry library).
> > > >>> You could use the client side tab for now, and help me implement
> the
> > > >>> ajax one;)
> > > >>> Let me know your thoughts.
> > > >>>
> > > >>> Hugo Palma wrote:
> > > >>>
> > > >>> > I've looked but couldn't find any component that provides a
> > > >>> TabPanel(like
> > > >>> > the example in Tapestry site) using AJAX so that the whole page
> > > >>> > doesn't get
> > > >>> > loaded when i change tabs.
> > > >>> > I think it could be donne using tacos:AjaxDirectLink instead of
> > > >>> > framework:DirectLink like the example, but if someone knows if
> > such
> > > a
> > > >>> > implementation already exists could you please direct me to it.
> > > >>> >
> > > >>> >
> > > >>> > Cheers
> > > >>> >
> > > >>> > Hugo
> > > >>> >
> > > >>>
> > > >>>
> > > >>>
> > > >>>
> > ---------------------------------------------------------------------
> > > >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > >>> For additional commands, e-mail: users-help@tapestry.apache.org
> > > >>>
> > > >>>
> > > >>
> > > >
> > > >
> > > >
> > > >
> ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > > For additional commands, e-mail: users-help@tapestry.apache.org
> > > >
> > > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > For additional commands, e-mail: users-help@tapestry.apache.org
> > >
> > >
> >
> >
>
>

Re: Component Tab with AJAX

Posted by Peter Svensson <ps...@gmail.com>.
Hmm. It works for me. Strange.

/PS

On 5/30/06, Hugo Palma <hu...@gmail.com> wrote:
>
> Still can't see it. It takes forever to load and then i just get a blank
> screen.
>
> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> >
> > The tab component on steroids is ready.
> >
> > Supports client-side and serverside switching (in the same tabset),
> > hiding tabs, enabling/disabling tabs.  There is a demo of the tab up and
> > running.
> > Let me know if there are any problems/enhancements....
> > http://stitches.authsum.org
> >
> > This tab was originally based on the tabset component(found on tassel).
> > I ported it to T4 and added several bells and whistles.
> >
> >
> >
> > spamsucks wrote:
> >
> > > Yes, the demo site has been up and down (it's where i am
> > > building/testing) the tab panel right now.  The new tab component will
> > > be on the demo site.
> > > I just got it working the way I want it to (css and javascript hell
> > > for the client side).
> > >
> > > I will update the docs and create some binaries to download.  I am
> > > going to create 2 sets of binaries, one for the set of components that
> > > require no dependencies outside tapestry/hivemind, and another jar
> > > that will contain the components that you need additional libs for...
> > >
> > > I will shoot out an email when you can download the jars (later today)
> > > and check out the demo site.
> > >
> > >
> > > Hugo Palma wrote:
> > >
> > >> That's great news......As soon as i find some free time i'll take a
> > >> deeper
> > >> look into it, in the mean time i can't access the demo site, is it
> > >> down ? Do
> > >> you have a demo of the tab panel component in the site ?
> > >>
> > >> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> > >>
> > >>>
> > >>> I am literally working on a tab panel component right now (just
> > stopped
> > >>> to check out the list).
> > >>>
> > >>> I was thinking about AJAX support.  Right now, it supports a
> > >>> simultaneous mixture of client and serverside tabs in the same
> tabset.
> > >>> other features include disabling, hiding, etc... of individual tabs.
> > >>> I will wrap development up today since I need this on a bunch of
> > >>> projects.   It will be in stitches (a tapestry library).
> > >>> You could use the client side tab for now, and help me implement the
> > >>> ajax one;)
> > >>> Let me know your thoughts.
> > >>>
> > >>> Hugo Palma wrote:
> > >>>
> > >>> > I've looked but couldn't find any component that provides a
> > >>> TabPanel(like
> > >>> > the example in Tapestry site) using AJAX so that the whole page
> > >>> > doesn't get
> > >>> > loaded when i change tabs.
> > >>> > I think it could be donne using tacos:AjaxDirectLink instead of
> > >>> > framework:DirectLink like the example, but if someone knows if
> such
> > a
> > >>> > implementation already exists could you please direct me to it.
> > >>> >
> > >>> >
> > >>> > Cheers
> > >>> >
> > >>> > Hugo
> > >>> >
> > >>>
> > >>>
> > >>>
> > >>>
> ---------------------------------------------------------------------
> > >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > >>> For additional commands, e-mail: users-help@tapestry.apache.org
> > >>>
> > >>>
> > >>
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > For additional commands, e-mail: users-help@tapestry.apache.org
> > >
> > >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
>
>

Re: Component Tab with AJAX

Posted by Hugo Palma <hu...@gmail.com>.
Still can't see it. It takes forever to load and then i just get a blank
screen.

On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
>
> The tab component on steroids is ready.
>
> Supports client-side and serverside switching (in the same tabset),
> hiding tabs, enabling/disabling tabs.  There is a demo of the tab up and
> running.
> Let me know if there are any problems/enhancements....
> http://stitches.authsum.org
>
> This tab was originally based on the tabset component(found on tassel).
> I ported it to T4 and added several bells and whistles.
>
>
>
> spamsucks wrote:
>
> > Yes, the demo site has been up and down (it's where i am
> > building/testing) the tab panel right now.  The new tab component will
> > be on the demo site.
> > I just got it working the way I want it to (css and javascript hell
> > for the client side).
> >
> > I will update the docs and create some binaries to download.  I am
> > going to create 2 sets of binaries, one for the set of components that
> > require no dependencies outside tapestry/hivemind, and another jar
> > that will contain the components that you need additional libs for...
> >
> > I will shoot out an email when you can download the jars (later today)
> > and check out the demo site.
> >
> >
> > Hugo Palma wrote:
> >
> >> That's great news......As soon as i find some free time i'll take a
> >> deeper
> >> look into it, in the mean time i can't access the demo site, is it
> >> down ? Do
> >> you have a demo of the tab panel component in the site ?
> >>
> >> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
> >>
> >>>
> >>> I am literally working on a tab panel component right now (just
> stopped
> >>> to check out the list).
> >>>
> >>> I was thinking about AJAX support.  Right now, it supports a
> >>> simultaneous mixture of client and serverside tabs in the same tabset.
> >>> other features include disabling, hiding, etc... of individual tabs.
> >>> I will wrap development up today since I need this on a bunch of
> >>> projects.   It will be in stitches (a tapestry library).
> >>> You could use the client side tab for now, and help me implement the
> >>> ajax one;)
> >>> Let me know your thoughts.
> >>>
> >>> Hugo Palma wrote:
> >>>
> >>> > I've looked but couldn't find any component that provides a
> >>> TabPanel(like
> >>> > the example in Tapestry site) using AJAX so that the whole page
> >>> > doesn't get
> >>> > loaded when i change tabs.
> >>> > I think it could be donne using tacos:AjaxDirectLink instead of
> >>> > framework:DirectLink like the example, but if someone knows if such
> a
> >>> > implementation already exists could you please direct me to it.
> >>> >
> >>> >
> >>> > Cheers
> >>> >
> >>> > Hugo
> >>> >
> >>>
> >>>
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >>> For additional commands, e-mail: users-help@tapestry.apache.org
> >>>
> >>>
> >>
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Component Tab with AJAX

Posted by spamsucks <sp...@rhoderunner.com>.
The tab component on steroids is ready.

Supports client-side and serverside switching (in the same tabset), 
hiding tabs, enabling/disabling tabs.  There is a demo of the tab up and 
running.
Let me know if there are any problems/enhancements....
http://stitches.authsum.org

This tab was originally based on the tabset component(found on tassel). 
I ported it to T4 and added several bells and whistles.



spamsucks wrote:

> Yes, the demo site has been up and down (it's where i am 
> building/testing) the tab panel right now.  The new tab component will 
> be on the demo site.
> I just got it working the way I want it to (css and javascript hell 
> for the client side).
>
> I will update the docs and create some binaries to download.  I am 
> going to create 2 sets of binaries, one for the set of components that 
> require no dependencies outside tapestry/hivemind, and another jar 
> that will contain the components that you need additional libs for...
>
> I will shoot out an email when you can download the jars (later today) 
> and check out the demo site.
>
>
> Hugo Palma wrote:
>
>> That's great news......As soon as i find some free time i'll take a 
>> deeper
>> look into it, in the mean time i can't access the demo site, is it 
>> down ? Do
>> you have a demo of the tab panel component in the site ?
>>
>> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
>>
>>>
>>> I am literally working on a tab panel component right now (just stopped
>>> to check out the list).
>>>
>>> I was thinking about AJAX support.  Right now, it supports a
>>> simultaneous mixture of client and serverside tabs in the same tabset.
>>> other features include disabling, hiding, etc... of individual tabs.
>>> I will wrap development up today since I need this on a bunch of
>>> projects.   It will be in stitches (a tapestry library).
>>> You could use the client side tab for now, and help me implement the
>>> ajax one;)
>>> Let me know your thoughts.
>>>
>>> Hugo Palma wrote:
>>>
>>> > I've looked but couldn't find any component that provides a
>>> TabPanel(like
>>> > the example in Tapestry site) using AJAX so that the whole page
>>> > doesn't get
>>> > loaded when i change tabs.
>>> > I think it could be donne using tacos:AjaxDirectLink instead of
>>> > framework:DirectLink like the example, but if someone knows if such a
>>> > implementation already exists could you please direct me to it.
>>> >
>>> >
>>> > Cheers
>>> >
>>> > Hugo
>>> >
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>>
>>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Component Tab with AJAX

Posted by spamsucks <sp...@rhoderunner.com>.
Yes, the demo site has been up and down (it's where i am 
building/testing) the tab panel right now.  The new tab component will 
be on the demo site.
I just got it working the way I want it to (css and javascript hell for 
the client side).

I will update the docs and create some binaries to download.  I am going 
to create 2 sets of binaries, one for the set of components that require 
no dependencies outside tapestry/hivemind, and another jar that will 
contain the components that you need additional libs for...

I will shoot out an email when you can download the jars (later today) 
and check out the demo site.


Hugo Palma wrote:

> That's great news......As soon as i find some free time i'll take a 
> deeper
> look into it, in the mean time i can't access the demo site, is it 
> down ? Do
> you have a demo of the tab panel component in the site ?
>
> On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
>
>>
>> I am literally working on a tab panel component right now (just stopped
>> to check out the list).
>>
>> I was thinking about AJAX support.  Right now, it supports a
>> simultaneous mixture of client and serverside tabs in the same tabset.
>> other features include disabling, hiding, etc... of individual tabs.
>> I will wrap development up today since I need this on a bunch of
>> projects.   It will be in stitches (a tapestry library).
>> You could use the client side tab for now, and help me implement the
>> ajax one;)
>> Let me know your thoughts.
>>
>> Hugo Palma wrote:
>>
>> > I've looked but couldn't find any component that provides a
>> TabPanel(like
>> > the example in Tapestry site) using AJAX so that the whole page
>> > doesn't get
>> > loaded when i change tabs.
>> > I think it could be donne using tacos:AjaxDirectLink instead of
>> > framework:DirectLink like the example, but if someone knows if such a
>> > implementation already exists could you please direct me to it.
>> >
>> >
>> > Cheers
>> >
>> > Hugo
>> >
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Component Tab with AJAX

Posted by Hugo Palma <hu...@gmail.com>.
That's great news......As soon as i find some free time i'll take a deeper
look into it, in the mean time i can't access the demo site, is it down ? Do
you have a demo of the tab panel component in the site ?

On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
>
> I am literally working on a tab panel component right now (just stopped
> to check out the list).
>
> I was thinking about AJAX support.  Right now, it supports a
> simultaneous mixture of client and serverside tabs in the same tabset.
> other features include disabling, hiding, etc... of individual tabs.
> I will wrap development up today since I need this on a bunch of
> projects.   It will be in stitches (a tapestry library).
> You could use the client side tab for now, and help me implement the
> ajax one;)
> Let me know your thoughts.
>
> Hugo Palma wrote:
>
> > I've looked but couldn't find any component that provides a
> TabPanel(like
> > the example in Tapestry site) using AJAX so that the whole page
> > doesn't get
> > loaded when i change tabs.
> > I think it could be donne using tacos:AjaxDirectLink instead of
> > framework:DirectLink like the example, but if someone knows if such a
> > implementation already exists could you please direct me to it.
> >
> >
> > Cheers
> >
> > Hugo
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Component Tab with AJAX

Posted by Peter Svensson <ps...@gmail.com>.
That's great!  I've been checking out stitches for quite some time, but
never managed to get it up and running. Could you please consider releasing
a binary sometime :) ?

I especially like the picture album, which I have ahem been inspired by in
my own coding a times :) Good stuff!

Cheers,
PS

On 5/29/06, spamsucks <sp...@rhoderunner.com> wrote:
>
> I am literally working on a tab panel component right now (just stopped
> to check out the list).
>
> I was thinking about AJAX support.  Right now, it supports a
> simultaneous mixture of client and serverside tabs in the same tabset.
> other features include disabling, hiding, etc... of individual tabs.
> I will wrap development up today since I need this on a bunch of
> projects.   It will be in stitches (a tapestry library).
> You could use the client side tab for now, and help me implement the
> ajax one;)
> Let me know your thoughts.
>
> Hugo Palma wrote:
>
> > I've looked but couldn't find any component that provides a
> TabPanel(like
> > the example in Tapestry site) using AJAX so that the whole page
> > doesn't get
> > loaded when i change tabs.
> > I think it could be donne using tacos:AjaxDirectLink instead of
> > framework:DirectLink like the example, but if someone knows if such a
> > implementation already exists could you please direct me to it.
> >
> >
> > Cheers
> >
> > Hugo
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Component Tab with AJAX

Posted by spamsucks <sp...@rhoderunner.com>.
I am literally working on a tab panel component right now (just stopped 
to check out the list).

I was thinking about AJAX support.  Right now, it supports a 
simultaneous mixture of client and serverside tabs in the same tabset.  
other features include disabling, hiding, etc... of individual tabs.    
I will wrap development up today since I need this on a bunch of 
projects.   It will be in stitches (a tapestry library).
You could use the client side tab for now, and help me implement the 
ajax one;)
Let me know your thoughts.

Hugo Palma wrote:

> I've looked but couldn't find any component that provides a TabPanel(like
> the example in Tapestry site) using AJAX so that the whole page 
> doesn't get
> loaded when i change tabs.
> I think it could be donne using tacos:AjaxDirectLink instead of
> framework:DirectLink like the example, but if someone knows if such a
> implementation already exists could you please direct me to it.
>
>
> Cheers
>
> Hugo
>



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org