当我动态构建一个 jmesa 表时,我只使用 bean 属性标签获得一个标题行。我需要一个或多个额外的标题行,我可以在其中设置一或两列附加文本。当然,我还需要导出表格,所以我不能在 jsp 结果中对 html 使用 javascript 操作。
我有的:
<tr class="header" >
<!-- columns with property -->
<td><div onmouseover="this.style.cursor='pointer'" ...> </div></td>
...
</tr>
</thead>
<tbody class="tbody" >
<tr id="idStatistica_row1" class="odd" ... >
...
我需要类似的东西:
<tr class="header" >
<!-- columns with my free text -->
<td><div>HEllo This Is A table</div></td>
<td><div>NO1</div></td>
</tr>
<tr class="header" >
<!-- columns with property -->
<td><div onmouseover="this.style.cursor='pointer'" ...> </div></td>
...
</tr>
</thead>
<tbody class="tbody" >
<tr id="idStatistica_row1" class="odd" ... >
...
谢谢