如何在 ActiveAdmin 索引页中自定义表列大小?
我正在尝试自定义我使用 ActiveAdmin 创建的管理部分中的索引页。 我想在 CSS2 中设置每列的大小。
ActiveAdmin 创建一个布局,例如:
<table [...] class="index_table">
<thead>
<tr>
<th class="sortable"><a href="#">Field 1</a></th>
<th class="sortable"><a href="#">Field 2</a></th>
<th class="sortable"><a href="#">Field 3</a></th>
<th class="sortable"><a href="#">Field 4</a></th>
</tr>
</thead>
<tbody>
<tr>
<td>value 1</td>
<td>value 2</td>
<td>value 3</td>
<td>value 4</td>
</tr>
</tbody>
</table>
我想为每个 部分添加一个类或 id,如:
<table [...] class="index_table">
<thead>
<tr>
<th class="first sortable"><a href="#">Field 1</a></th>
<th class="second sortable"><a href="#">Field 2</a></th>
<th class="third sortable"><a href="#">Field 3</a></th>
<th class="fourth sortable"><a href="#">Field 4</a></th>
</tr>
</thead>
<tbody>
<tr>
<td>value 1</td>
<td>value 2</td>
<td>value 3</td>
<td>value 4</td>
</tr>
</tbody>
</table>
也许,这不是最好的方法?
任何帮助表示赞赏...
I'm trying to customize the index pages in my admin section I've created with ActiveAdmin.
I want to set the size for each column in CSS2.
ActiveAdmin create a layout like:
<table [...] class="index_table">
<thead>
<tr>
<th class="sortable"><a href="#">Field 1</a></th>
<th class="sortable"><a href="#">Field 2</a></th>
<th class="sortable"><a href="#">Field 3</a></th>
<th class="sortable"><a href="#">Field 4</a></th>
</tr>
</thead>
<tbody>
<tr>
<td>value 1</td>
<td>value 2</td>
<td>value 3</td>
<td>value 4</td>
</tr>
</tbody>
</table>
I want to add a class or an id for each <th>
section, as:
<table [...] class="index_table">
<thead>
<tr>
<th class="first sortable"><a href="#">Field 1</a></th>
<th class="second sortable"><a href="#">Field 2</a></th>
<th class="third sortable"><a href="#">Field 3</a></th>
<th class="fourth sortable"><a href="#">Field 4</a></th>
</tr>
</thead>
<tbody>
<tr>
<td>value 1</td>
<td>value 2</td>
<td>value 3</td>
<td>value 4</td>
</tr>
</tbody>
</table>
Maybe, it's not the best way to do it?
Any help appreciated...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,这是一种方法:
在 active_admin.css.scss 中,您可以添加一些样式来自定义 Headline 模型的索引,例如:
等等...
Well, here's a way to do it:
In active_admin.css.scss you can add some styles to customise the index of the Headline model for example:
And so on...