TableTag |
TableTag is attempt to make easer development of simple one table forms in web applications. This will allow quickly build many UI's of "one" side tables in one-to-many relationship. To get this tag working follow instructions bellow. Add tag library declaration to your JSP: <%@taglib prefix="tt" uri="/WEB-INF/TableTags.tld"%> Declare table definition: <tt:table=""
sourcebeanclass="albel.tags.table.test.TestBean" id="myTestTable"
language="en" country="US"> To get things working you must implement
albel.tags.table.model.IRowHandler. The way you load bean list is
your own business, you can do this in IRowHandler.handleLoad method.
Bean can be handled using hibernate or directly using java.sql package. It is easy to change default rendering, it is
easy to write your own IRenderer implementation. Then plug it in
TableTagContext.xml instead of existing renderer. Version 0.2 changes: Version 0.1 changes: Project hosted at: http://sourceforge.net/projects/tabletag |