2

我想要一个看起来像 RadGrids 的普通表,有没有一种简单的方法可以使用 RadGrid 样式(牢记主题)?

4

2 回答 2

4

使用Firebug之类的工具,您可以检查 RadGrid 生成的表。

此页面上显示的示例给出了以下结果:

<table class="rgMasterTable rgClipCells">
   <thead>
     <th class="rgHeader" scope="col">header</th>
   </thead>
   <tbody>
      <td class="rgRow">cell</td>
   </tbody>
</table>

将此处所述的类添加到您自己的表中应该从 rad 网格中复制样式。

于 2010-05-21T10:56:44.327 回答
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 回答