What other Freemarker JSP Tag libraries are out-there?
- by Mat Banik
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.