我需要渲染一个看起来不像常规网格表的表格,其中一个条目,这将是典型表格中的一行,第 1 列和第 2 列值可以放在第 1 行,第 3、4 和 5 列中值将在第 2 行,依此类推:
<table id="display_searchresults_student">
<tr>
<th rowspan="4"><img src="../../Images/picture_temp.jpg" id="display_searchresults_studentpicture"/></th>
<td id="display_searchresults_studentname"><a href="">**Name Column**</a>
<img src="../../Images/picture_temp.jpg" height="25px" width="25px"/>
</td>
<td align="right" width="100px">Rating Column</td>
</tr>
<tr>
<td id="display_searchresults_studentlocation">City Column, State Column | University Column</td>
<td></td>
</tr>
<tr>
<td id="display_searchresults_studentinfo">Department Column | School Standing Column Graduation Date Column | GPA Column</td>
<td></td>
</tr>
<tr>
<td id="display_searchresults_studentdesc" colspan="2">Comments Column<a href="">...</a></td>
</tr>
</table>
该表将有多个条目。我之所以想到使用 WebGrid,是因为我需要排序、过滤和分页功能。我现在 Telerik 允许构建这样的表格。但是,我没有看到如何通过 WebGrid 做到这一点。有没有办法在呈现之前更改 Webgrid 的 HTML 而不会破坏排序、过滤和分页功能?jqGrid 或其他开源网格是否允许这样做?
提前非常感谢。