Hi Michael,

yes I saw the XUL ViewHandler inside of the non-jsp examples;
(XulViewHandlerImpl.java)

I haven't tried it. But sure, XUL is interessting.

Inside of MyFaces there exists an optional ViewHandler that enables you
to use Tiles.
Here are examples:
http://www.apache.org/~matzew/
(the last link is the TilesViewHandler example)

Another thing that could be intressting, regarding the Bersten article
is the smile project, hosted at SF.net

Smile is currently not active, but they provide a ViewHandler
that enables you to use Classes instead of JSP, for building
your web apps.

Like:
<code>
public class Welcome extends AbstractDemo {
        public UIComponent createContent() {
                HtmlOutputLabel label = new HtmlOutputLabel();
                label.setId("input");
                label.setValue("Welcome to the home page of the Smile
demosite! To view Smile in action, select a demo from the menu on the
left.");
                
                return label;
        }
}
</code>

This is a nice approach, so you may look deeper
inside...

Code for ViewHandler is here:
http://tinyurl.com/6uz4n

example files are here:
http://tinyurl.com/44fyp



HTH,
Matthias

> -----Original Message-----
> From: Micha³ Ma³ecki [mailto:[EMAIL PROTECTED] 
> Sent: Sunday, January 02, 2005 4:26 PM
> To: MyFaces Discussion
> Subject: Re: JSF - iteration tags
> 
> 
> Hello Matthias,
> thanks for the link. But are there any, at least a little 
> mature, alternative viehandlers? I haven't found any bundled 
> with myfaces, I saw xul handler with jsf ri (interesting). I 
> know that my template panel is simple a mere substitute for a 
> great view handler that would solve all problems ;) but I 
> don't se anything like that nowhere. Do you think of 
> developing some others viewhandlers inside myfaces? Michał
> 
> 
> Matthias Wessendorf wrote:
> > Hi Michael,
> > 
> > here is a nice article from Hans Bergsten. 
> > http://www.onjava.com/pub/a/onjava/2004/06/09/jsf.html
> > 
> > HTH,
> > Matthias
> > 
> > 
> >>-----Original Message-----
> >>From: Heath Borders [mailto:[EMAIL PROTECTED]
> >>Sent: Sunday, January 02, 2005 4:41 AM
> >>To: MyFaces Discussion
> >>Subject: Re: JSF - iteration tags
> >>
> >>
> >>The JSF tags that map to exact HTML tags are useful just so
> >>that you don't have to dump verbatim tags everywhere.  
> >>PanelGrid is pretty handy, but it doesn't solve all issues.
> >>
> >>
> >>On Sat, 01 Jan 2005 22:24:23 +0100, Michał Małecki
> >><[EMAIL PROTECTED]> wrote:
> >>
> >>>Hello,
> >>>sorry for bothering (I'm not jsf expert) bu is it good to
> >>
> >>create jsf
> >>
> >>>(jsp pages) which tags create such exact html elements? I'm
> >>
> >>rather fan
> >>
> >>>of using panelGrid, which instead of creating simple table, creates
> >>>html code based on some template. Please tell me what do you think 
> >>>about such solution
> >>>
> >>>regars
> >>>Michał Małecki
> >>>
> >>>Heath Borders wrote:
> >>>
> >>>
> >>>>There already is a complete set of HTML JSF tags that is freely
> >>>>available with source.
> >>>>
> >>>>I'll get a link for it on monday when I get back to work.
> >>>>
> >>>>
> >>>
> >>>
> >>
> >>--
> >>-Heath Borders-Wing
> >>[EMAIL PROTECTED]
> >>
> > 
> > 
> > 
> > 
> 
> 
> 

Reply via email to