I use groupBy in ngTable, but now I need an extra level of grouping in the table:
$scope.tableParams = new ngTableParams({ count: 100, sorting: { PremiumElementGroup: 'desc', PremiumElement: 'desc', LegalEntity: 'asc', SettlementCurrency: 'asc' } }, { counts: [], groupBy: 'PremiumElementGroup' <--- only allows one level of grouping... , getData: function ($defer, params) { var orderedData = $filter('orderBy')($scope.section.PremiumCessionOverrides, params.orderBy()); $defer.resolve(orderedData); } });
Is there anything I can do to achieve what I want? Or another grid tool that I could use?
angularjs ngtable
tom redfern
source share