JQuery Row Grouping拆分相同的组

时间:2015-02-10 10:56:44

标签: jquery html datatables

我正在使用我的HTML代码所在的JQuery Datatables,

<table class="table table-striped table-bordered table-hover"
                                                    id="dataTables-industryGroupFilter">
                                                <thead>
                                                    <tr>
                                                        <th></th>
                                                        <th></th>
                                                        <th></th>
                                                        <th></th>
                                                        <th></th>
                                                    </tr>
                                                </thead>
                                                <tbody id="industryGroupFilterDetails">
                                            </tbody>
                                            </table>

我在下面使用以下内容对我的表进行分组:

dataTableGroupIndustry.rowGrouping({bExpandableGrouping: true,iGroupingColumnIndex:3,iGroupingOrderByColumnIndex:4, sGroupingColumnSortDirection: "desc",fnGroupLabelFormat:function(label){ if(label=="" || label=="-") return "<i>Undefined</i>"+" ("+mapIndustry[""]+")"; else if(mapIndustry[label]!=null) return label+" ("+mapIndustry[label]+")"; else return label; }});

一切正常,但数据表不必要地拆分相同的组。即我可以看到2个不同的组具有相同的标签,但记录不同。我不知道如何解决这个问题。

0 个答案:

没有答案