will_filter gem rails,表格宽度

时间:2013-07-29 23:33:08

标签: ruby-on-rails rubygems

我在我的rails应用中使用了will_filter。我正在使用它的表有15列,因此表格宽度超出了屏幕。如何在框架内限制并在下方保留滚动条?

will_filter是否可以使用?对will_filter的支持非常少。这个gem甚至没有Stack Overflow标签。

1 个答案:

答案 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;
}