md-data-table
md-data-table copied to clipboard
Custom pagination look
Is more a question than an issue. Is it possible to write my own html to handle pagination? Thing is: It´s mandatory in my project using a template but you md-data-table is awesome... I would like to use it but with my company´s look and feel.
in your app config function add:
$provide.decorator('mdTablePaginationDirective', function ($delegate) {
var directive = $delegate[0];
directive.templateUrl = 'path to custom template';
return $delegate;
});