如何修复struts2显示表中的表头行..
下面的代码在struts2显示表中
<display:table id="approvalList" name="approvalList" pagesize="${PAGESIZE}" export="false" style="width:934px;align:right;overflow: auto" class="tableHeading" requestURI="approval-list" >
<display:column title="Reports" sortable="false" style="width:11%;text-decoration:none;text-align:left;">111</display:column>
<display:column title="Project No." sortable="false" style="width:13%;text-decoration:none;text-align:left;">222</display:column>
<display:column title="Status" sortable="false" style="width:16%;text-decoration:none;text-align:left;">333</display:column>
<display:column title="Client Name" sortable="false" style="width:18%;text-decoration:none;text-align:left;">444</display:column>
<display:column title="Project Name" sortable="false" style="width:20%;text-decoration:none;text-align:left;">555</display:column>
<display:column title="Set No." sortable="false" style="width:10%;text-decoration:none;text-align:left;">666</display:column>
<display:column title="Placed Date" sortable="false" style="width:12%;text-decoration:none;text-align:center;">777</display:column> </display:table>
上面代码生成下面的HTML Code.In如何修复表头行。
<table id="approvalList" style="width:934px;align:right;overflow: auto" class="tableHeading">
<thead>
<tr>
<th>Reports</th>
<th>Project No.</th>
<th>Status</th>
<th>Client Name</th>
<th>Project Name</th>
<th>Set No.</th>
<th>Placed Date</th>
</tr>
</thead>
<tbody>
<tr class="even">
<td style="width:11%;text-decoration:none;text-align:left;">111</td>
<td style="width:13%;text-decoration:none;text-align:left;">222</td>
<td style="width:16%;text-decoration:none;text-align:left;">333</td>
<td style="width:18%;text-decoration:none;text-align:left;">444</td>
<td style="width:20%;text-decoration:none;text-align:left;">555</td>
<td style="width:10%;text-decoration:none;text-align:left;">666</td>
<td style="width:12%;text-decoration:none;text-align:left;">777</td>
</tr>
<tr class="odd">
<td style="width:11%;text-decoration:none;text-align:left;">111</td>
<td style="width:13%;text-decoration:none;text-align:left;">222</td>
<td style="width:16%;text-decoration:none;text-align:left;">333</td>
<td style="width:18%;text-decoration:none;text-align:left;">444</td>
<td style="width:20%;text-decoration:none;text-align:left;">555</td>
<td style="width:10%;text-decoration:none;text-align:left;">666</td>
<td style="width:12%;text-decoration:none;text-align:left;">777</td>
</tr>
</tbody>
</table>
答案 0 :(得分:-1)
Struts不会给你这个但是CSS或/和Javascript会这样做。
尝试http://www.tablefixedheader.com/或http://www.imaputz.com/cssStuff/bigFourVersion.html。一切都取决于您的要求。
另一个推荐,避免使用内联样式(样式属性)并且更喜欢CSS文件和类属性。它们有很多优点,你只需要在google上搜索它。
我希望这对您有所帮助,欢迎任何评论。