Is there any way to display icons instead of text in the ng-grid grouping columns?
UPDATE 04-14-2015
I did it! Was making an example in Plunker, but i could do what i wanted. Thank you all.
$scope.gridOptions = {
...
aggregateTemplate: aggregateRowTemplate()
};
function aggregateRowTemplate() {
var result =
"<div ng-click=\"row.toggleExpand()\" ng-style=\"rowStyle(row)\" class=\"ngAggregate\">" +
" <img ng-src='{{row.label}}' lazy-src >" +
" <div class=\"{{row.aggClass()}}\"></div>" +
"</div>"
return result;
}
Plunker: http://plnkr.co/edit/OxvCVgmJGzgsNL1eOV1d?p=preview