md-data-table icon indicating copy to clipboard operation
md-data-table copied to clipboard

Custom pagination look

Open ghost opened this issue 7 years ago • 1 comments

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.

ghost avatar Jan 26 '18 14:01 ghost

in your app config function add:

$provide.decorator('mdTablePaginationDirective', function ($delegate) {
        var directive = $delegate[0];
        directive.templateUrl = 'path to custom template';
        return $delegate;
    });

MatteoDigi avatar Apr 01 '19 16:04 MatteoDigi