Thanks for the response.

Unless I missed something, the taglib "nested" is not just a cooler way to access child beans, or access beans inside, say, collection of collections ;

The nested taglib allows *_true recursion_ *within JSPs that is not possible otherwise with struts standard nor JSTL.

nested is much much more elegant than using "indexed" property. "Indexed' doesn't allow recursion, anyway.

So, I think a nested-el is desirable and relevant.

a cool tutorial to nested taglib :

http://www.keyboardmonkey.com/index.jsp

It allows something like :

treenode.jsp
...

 <nested:root>

   <nested:write property="nodeName" /><br>
   <nested:iterate property="childCollection">
     <jsp:include page="treenode.jsp" />
   </nested:iterate>
</nested:root>



Lance wrote:

There is no nested-el. The struts-nested, struts-logic and struts-bean tags
are pretty much dead. If you're not already, use the JSTL tags as I'm sure
most of the people on this list will tell you.

http://java.sun.com/products/jsp/jstl/

-----Original Message-----
From: Laurent Duparchy [mailto:[EMAIL PROTECTED] Sent: 12 July 2006 07:41
To: user@struts.apache.org

Hi,

(Sorry if you already get this message, I'm sure if it had been sent.)

is there a taglib "nested-el" ?

If not, what is the turnarround to evaluate an expression within a <nested> tag ?



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to