ngx-o-table

0.2.0 • Public • Published

ngx-o-table

npm

A lightweight, generic Angular (v2+) component to display data provided by an Odata source.

Features

  • Metadata driven
  • Allows multiple OData endpoints within one App
  • Customizable table properties
  • Pagination included

Working with

  • Angular (v2+)

Installation

To use ngx-o-table in your project install it via npm:

npm install --save ngx-o-table

Then include it in your application's main module:

import { OtableModule } from 'ngx-o-table';
 
@NgModule({
  imports: [
    ...
    OtableModule,
    ...

Usage

Your Odatatable would look like this in an Angular template:

  <ngx-o-table
    [entitySetName]="'Products'" 
    [serviceUrl]="'/V3/Northwind/Northwind.svc/'" 
    [itemsPerPage] = "'5'"
    [maxPagesInPagination] = "'3'">
  </ngx-o-table> 

Just feed in the name of the entity set you want to display along with the ServiceURL and you are good to go. itemsPerPage and maxPagesInPagination are optional.

Theming

The table is styled with Bootstrap 3.3.7

This is planned to be changed to Material 2 as soon as a DataTable component is available.

Live Demo

To see ngx-o-table in action (head to /demo-basic), a few steps are required:

  • you need Angular-CLI v1.0 or later (npm install -g @angular/cli)
  • from the demo-basic folder, run npm install
  • then start ng serve

You might use ng serve --proxy-config proxy.conf.json to get rid of the Same-origin policy.

proxy.conf.json could look like this:

{
    "/V3/*": {
    "target": "http://services.odata.org",
    "secure": false,
    "changeOrigin": true
  }
}

Dependencies (2)

Dev Dependencies (25)

Package Sidebar

Install

npm i ngx-o-table

Weekly Downloads

2

Version

0.2.0

License

MIT

Unpacked Size

21.8 kB

Total Files

20

Last publish

Collaborators

  • phreis