ngx-datatable-footer

[![Build Status](https://travis-ci.org/ZhongruiGroup/ngx-datatable-footer.svg?branch=master)](https://travis-ci.org/ZhongruiGroup/ngx-datatable-footer) [![codecov](https://codecov.io/gh/ZhongruiGroup/ngx-datatable-footer/branch/master/graph/badge.svg)](ht


License
MIT
Install
npm install ngx-datatable-footer@4.0.4

Documentation

ngx datatable footer

Build Status codecov npm version devDependency Status GitHub issues GitHub stars GitHub license

About

This is a footer component for extending'ngx-datatable'components.

Installation

Install through npm:

npm install --save ngx-datatable-footer

Then include in your apps module:

import { NgModule } from '@angular/core';
import { NgxDatatableFooterModule } from 'ngx-datatable-footer';

@NgModule({
  imports: [
    NgxDatatableFooterModule.forRoot()
  ]
})
export class MyModule {}

Finally use in one of your apps components:

import { Component } from '@angular/core';

@Component({
  template: '<app-datatable-footer [datatable]="datatable"></app-datatable-footer>'
})

export class MyComponent {}