我完全按照https://github.com/rweng/jquery-datatables-rails。 無法使dataTables工作。軌道上的數據表紅寶石4
在index.html.erb
<table id = "funds12">
<thead>
<tr>
<th>Fund Name</th>
<th>Category</th>
<th>YTD</th>
</tr>
</thead>
<tbody>
<% @funds.each do |fund| %>
<tr>
<td><%= link_to "#{fund.scheme_name}", fund_path(fund.id) %><td>
<td><%= fund.category %></td>
<td><%= fund.fund_ytd %></td>
</tr>
<% end %>
</tbody>
</table>
<script>
$(document).ready(function() {
$('#funds12').dataTable();
});
</script>
在的application.js
//= require jquery
//= require turbolinks
//= require_tree .
//= require jquery_ujs
//= require dataTables/jquery.dataTables
在application.css.scss
*= require_self
*= require_tree .
*= require dataTables/jquery.dataTables
寶石文件
寶石 'jQuery的數據表護欄',git的: '混帳://github.com/rweng/jquery-datatables-rails.git'
試過很多的選項,只有一張表出現沒有數據表的功能。 使用Rails 4 是否寶石添加新的文件夾和文件到您的應用程序,如果是的話沒有什麼是我的應用程序添加
沒有答案???任何提示也將b極大的幫助 –
發佈寶石文件?或者插入您的插入數據表格寶石 –