RE: Recursive tag evaluation

2008-01-15 Thread AMIR-TAHMASSEB Marc
>From: David Delbecq [mailto:[EMAIL PROTECTED] >Sent: 15 January 2008 15:54 >To: MyFaces Discussion >Subject: Re: Recursive tag evaluation > >It's not possible, mainly because the notion of tag is independant to >JSF. JSF is a component handler. JSP tags are used to crea

Re: Recursive tag evaluation

2008-01-15 Thread David Delbecq
It's not possible, mainly because the notion of tag is independant to JSF. JSF is a component handler. JSP tags are used to create the component tree. When your bean evaluation is done, the component tree is already build and the notion of tag is then irrelevant. However, if you have alternativ

Re: Recursive tag evaluation

2008-01-15 Thread Simon Kitching
AMIR-TAHMASSEB Marc <[EMAIL PROTECTED]> schrieb: > Hi everybody, > > Does anybody know how I can evaluate the result of a tag evaluation ? > > > Here is my problem : > > In my jsp I do this : > > > > > In myForm bean i have : > > public String getMyText() { > return ""; > } >

Recursive tag evaluation

2008-01-15 Thread AMIR-TAHMASSEB Marc
Hi everybody, Does anybody know how I can evaluate the result of a tag evaluation ? Here is my problem : In my jsp I do this : In myForm bean i have : public String getMyText() { return ""; } And myTag.display refer to a tag that i wrote and that for example return a string like

Recursive tag evaluation

2008-01-15 Thread AMIR-TAHMASSEB Marc
Hi everybody, Does anybody know how can I evaluate the result of a tag evaluation ? Here is my problem : In my Marc Kamran AMIR-TAHMASSEB