我在我的rails应用中使用了will_filter。我正在使用它的表有15列,因此表格宽度超出了屏幕。如何在框架内限制并在下方保留滚动条?
will_filter是否可以使用?对will_filter的支持非常少。这个gem甚至没有Stack Overflow标签。
答案 0 :(得分:2)
在表格周围添加一个div并给出div滚动指令。像:
在你看来erb:
<div class="scrolly-table">
<h1> List of all bottles</h1>
<%= will_filter_table_tag(@bottles) %>
</div>
或haml
.scrolly-table
%h1 List of all bottles
= will_filter_table_tag(@bottles)
并在你的CSS文件中
.scrolly-table {
overflow: scroll;
}