What other Freemarker JSP Tag libraries are out-there?

Posted by Mat Banik on Stack Overflow See other posts from Stack Overflow or by Mat Banik
Published on 2010-12-31T22:22:06Z Indexed on 2011/01/14 15:53 UTC
Read the original article Hit count: 227

Filed under:
|
|

I have been using Freemarker for a while and found displaytag library very useful. I just wondering if there are any other libraries that could be used in similar means as displaytag, which have been very helpful to you in development:

FTL page

<#assign display=JspTaglibs["/WEB-INF/tlds/displaytag.tld"]/>
<@display.table uid="items" name="items" pagesize=10 class="table">
    <@display.column title="Category" property="category.name"/>
    <@display.column title="Delivery" property="delivery"/>
</@display.table>

Example of usage would be appreciated since most of the JSP tag libs don't have them.

© Stack Overflow or respective owner

Related posts about libraries

Related posts about jsp-tags