响应式扩展不适用于行分组

时间:2015-10-11 05:00:58

标签: jquery datatables

我希望移动设备可以访问我的应用程序。我在我的应用程序中实现了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] );
                        }
                    }                   
                }
            });
        });

谢谢

0 个答案:

没有答案