tags:

views:

8

answers:

2

How do I create a table with fixed header and scrolling rows in struts 2?

A: 

There isn't, Struts2 does not provide such things, it's easy to write it by yourself. You can also try to use DisplayTags on top of Struts2 (I haven't, google for it)

leonbloy
+1  A: 

you can use the s:iterate tag to create a table, with simple iteration of an collection.

An other way is to use Display Tag Libary for static Tables or the Grid Tags from Struts2 jQuery. with both you can simple implement paging and sorting.

jogep