我希望移动设备可以访问我的应用程序。我在我的应用程序中实现了http://jsfiddle.net/oscar11/wm9yerny/。但是如果使用行分组,它就无法正常工作。
$(document).ready(function () {
$('#example').dataTable({
"responsive": true,
"bLengthChange": false,
"bPaginate": false,
"bJQueryUI": true
}).rowGrouping({
fnOnGrouped: function(groups){
console.log("Groups", groups);
for(key in groups){
if(groups.hasOwnProperty(key)){
var data = $('#example').dataTable().fnGetData($(groups[key].groupItemClass).get(0));
$(groups[key].nGroup).css('background-color', data[4] );
}
}
}
});
});
谢谢