Re: Simplifying column expression

2005-12-08 Thread Juergen Melzer
Thank you, it works... From: Volker Weber [EMAIL PROTECTED] Reply-To: MyFaces Discussion users@myfaces.apache.org To: MyFaces Discussion users@myfaces.apache.org Subject: Re: Simplifying column expression Date: Wed, 07 Dec 2005 18:01:25 +0100 Hi, i think there is non need of a my:column

Re: Simplifying column expression

2005-12-07 Thread Mike Kienenberger
Unless you're using some sort of substitution technology like facelets, it probably won't be trivial. You'll need to subclass UIColumn to create MyColumn, and then either read the my:columnheader tag in as a header facet, or have the my:columnheader component create a header facet on its parent

RE: Simplifying column expression

2005-12-07 Thread Jesse Alexander \(KBSA 21\)
07, 2005 4:30 PM To: MyFaces Discussion; [EMAIL PROTECTED] Subject: Re: Simplifying column expression Unless you're using some sort of substitution technology like facelets, it probably won't be trivial. You'll need to subclass UIColumn to create MyColumn, and then either read the my:columnheader

Re: Simplifying column expression

2005-12-07 Thread Volker Weber
Hi, i think there is non need of a my:column. It should suffice just to have a columnHeader tag, extending f:facet tag, and just create a UIOutput component and add this as facet 'header' to the parent component. Regards Volker Mike Kienenberger wrote: Unless you're using some sort of

Simplifying column expression

2005-12-06 Thread Juergen Melzer
Hi, I want to simplify the expression x:column f:facet name=header h:outputText value=#{text.firstname} / /f:facet h:outputText value=#{auser.firstName} / /x:column with this one: my:column my:columnheader value=#{text.firstname} / h:outputText