| Author |
Anyone done a good 'paged' datatable solution for Struts?
|
John Summers
Ranch Hand
Joined: Oct 06, 2003
Posts: 125
|
|
Hi, Subject title says it all really. Anyone done/come across a good tag(s) solution to paged datatables in Struts i.e. without using 'iterate' style tags or heinous scriptlets. Paging adds a whole layer of complexity above a non-paged datatable tag. john
|
 |
Masoud Kalali
Author
Ranch Hand
Joined: Jul 08, 2004
Posts: 531
|
|
Hi Sure there are some very good paging framework out there in OSS Just for one of them i use heavely in my project : http://displaytag.sourceforge.net also there are more like valueList which is based on VO pattern table tag (AFAIR) ... hope it helps.
|
Masoud Kalali
Software Engineer - My Weblog - GlassFish Security
|
 |
John Summers
Ranch Hand
Joined: Oct 06, 2003
Posts: 125
|
|
Thanks, That link you mentioned looks really useful. j
|
 |
Grishma Dube
Ranch Hand
Joined: Jul 01, 2003
Posts: 273
|
|
Masoud is right...Displaytag is fantastics... Its very useful at the same time very easy to use.
|
 |
sudhakar Tadepalli
Ranch Hand
Joined: Dec 27, 2001
Posts: 130
|
|
I using display tag and getting the follwoing error. Unable to instantiate the configured I18nResourceProvider due to a java.lang.NoClassDefFoundError exception: org.apache.taglibs.standard.tag.common.fmt.BundleSupport and JSP displaying "Nothing found to display" I have a collection in the formbean and its propert name is "collection" and the form bean is in session <%@ taglib uri="http://displaytag.sourceforge.net" prefix="display" %> <display:table name="test" list="collection"> <display:column property="templateid" title="ID" /> <display:column property="templatetype" /> <display:column property="detaildesc" title="DESC" /> <display:column property="ownercode" title="CODE"/> </display:table> Any help please ?
|
 |
 |
|
|
subject: Anyone done a good 'paged' datatable solution for Struts?
|
|
|