Skip to content

vikramkalta/ngx-table

Repository files navigation

ngx-table - Angular library built with ❤ using ngx-library yeoman generator.

npm version, Build Status Coverage Status dependency Status devDependency Status

Demo

View all the directives in action at https://vikramkalta.github.io/ngx-table

Dependencies

  • Angular (requires Angular 2 or higher, tested with 2.0.0)

Installation

Install above dependencies via npm.

Now install ngx-awesome-table via:

npm install --save ngx-awesome-table

SystemJS

Note:If you are using SystemJS, you should adjust your configuration to point to the UMD bundle. In your systemjs config file, map needs to tell the System loader where to look for ngx-awesome-table:

map: {
  'ngx-awesome-table': 'node_modules/ngx-awesome-table/bundles/ngx-awesome-table.umd.js',
}

Once installed you need to import the main module:

import { LibModule } from 'ngx-awesome-table';

The only remaining part is to list the imported module in your application module. The exact method will be slightly different for the root (top-level) module for which you should end up with the code similar to (notice LibModule .forRoot()):

import { LibModule } from 'ngx-awesome-table';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [LibModule.forRoot(), ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import LibModule:

import { LibModule } from 'ngx-awesome-table';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [LibModule, ...], 
})
export class OtherModule {
}

Usage

License

Copyright (c) 2018 vikram. Licensed under the MIT License (MIT)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published