如何设置普通 html 表(或 ASP 表)的样式,就像网站中 RadGrid 的其余部分一样?

发布于 2024-09-02 13:25:05 字数 64 浏览 4 评论 0原文

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

I'd like to have a normal table to look like RadGrids, is there an easy way I can use the RadGrid styles (keeping theming in mind)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海夜未眠 2024-09-09 13:25:05

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

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

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

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

Using a tool like Firebug, you can inspect the table generated by RadGrid.

The example shown on this page gives the following results:

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

Adding the classes stated here to your own table should copy the style from the rad grid.

開玄 2024-09-09 13:25:05

我一直在玩这个,似乎你需要用某些样式将表格包装在 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>

I have been playing with this, and it seems you need to wrap the table in div(s) with certain styles - maybe due to themes? Maybe I'm still missing something, but this is the only way I could get it to work.

<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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文