在我的 gemfile 中,我包含了这些 gem:
gem 'jquery-datatables-rails', github: 'rweng/jquery-datatables-rails'
gem 'jquery-ui-rails'
在我的 application.css 文件中,我包含了这些
*= require dataTables/jquery.dataTables
*= require dataTables/jquery.dataTables.bootstrap
在我的 application.js 中,我包含了这些
//= require dataTables/jquery.dataTables
//= require dataTables/jquery.dataTables.bootstrap
$('#sort').dataTable({
"bPaginate": false,
"oLanguage": {
"sSearch": "<span class=icon-search></span>"
},
"aoColumnDefs": [
{ 'bSortable': false, 'aTargets': [ 0 ] }
]
});
$('#sort').dataTable( {
"aaSorting": [[ 4, "desc" ]]
} );
// For fluid containers
$('.datatable').dataTable({
"sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
"sPaginationType": "bootstrap"
});
但我没有得到搜索的选项,但我收到了这个错误
oCol is undefined
oCol.fnSetData( oData, val );
我为此参考了datatables.net。有人可以告诉我这是什么错误吗?