in my project, I have to enable my user to pass a RowSetDynaClass object from risult of a query, and after that display that result in the table. I use the following code, since I can't determine the number and type of columns:
but the result is not what I need, because the table show the value of the first data and hide the following duplicate data, and I need that all data been display. Is there any property to set in the "table" to disable the omission steps?
thank you in advance.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
in my project, I have to enable my user to pass a RowSetDynaClass object from risult of a query, and after that display that result in the table. I use the following code, since I can't determine the number and type of columns:
<display:table offset="1" id="item" name="requestScope.rsResp.rows" pagesize="100" export="true" partialList="false" sort="list" requestURI="ReportPreview.do" class="tableReport"></display:table>
but the result is not what I need, because the table show the value of the first data and hide the following duplicate data, and I need that all data been display. Is there any property to set in the "table" to disable the omission steps?
thank you in advance.
I solved the problem extending the class TableDecorator, and overriding the method "displayGroupedValue"