我想要一个看起来像 RadGrids 的普通表,有没有一种简单的方法可以使用 RadGrid 样式(牢记主题)?
问问题
1088 次
2 回答
0
我一直在玩这个,看来你需要用某些样式将表格包装在 div 中 - 也许是由于主题?也许我仍然缺少一些东西,但这是我让它工作的唯一方法。
<div class="RadGrid RadGrid_Sunset">
<table class="rgMasterTable rgClipCells">
<thead>
<th class="rgHeader" scope="col">header</th>
</thead>
<tbody>
<td class="rgRow">cell</td>
</tbody>
</table>
</div>
于 2010-05-21T22:36:51.577 回答