ngx-datatable-actions
v4.0.0
Published
This is a component that extends the column display and hidden components of the ngx-datetable table component.
Downloads
15
Readme
About
This is a component that extends the column display and hidden components of the ngx-datetable table component.
Installation
Install through npm:
npm install --save ngx-datatable-actions
Then include in your apps module:
import { NgModule } from '@angular/core';
import { NgxDatatableActionsModule } from 'ngx-datatable-actions';
@NgModule({
imports: [
NgxDatatableActionsModule.forRoot()
]
})
export class MyModule {}
Finally use in one of your apps components:
import { Component } from '@angular/core';
@Component({
template: '<app-datatable-actions [datatable]="dt"></app-datatable-actions>'
})
export class MyComponent {}