Rails dataTable列搜索位置

时间:2013-11-18 14:24:00

标签: ruby-on-rails jquery-datatables

在Rails应用中,我使用dataTablescolumnFilter.js

我希望列搜索位于dataTable的顶部,而不是底部。

所以,我在js中添加了这个:

.columnFilter(
  sPlaceHolder: "head:before"

我在标题中添加了第二行,如下所示:

<table class="display dataTable table table-striped table-bordered" id="dataTable1">
<thead>
<tr>
  <th>Search</th>
  <th>Search</th>
  <th>Search</th>
  <th>Search</th>
  <th>Search</th> 
</tr>
<tr>
  <th>Date</th>
  <th>Desc</th>
  <th>Client</th>
  <th>Project</th>
  <th>Employee</th>
</tr>
</thead>

我的Mac看起来很好:

enter image description here

但是,在Heroku上,表行被切换:

enter image description here

0 个答案:

没有答案