stephengolub / rxDataTable

A "catch-all" solution for displaying data in a table format in a basic or extremely complex style.
MIT License
15 stars 8 forks source link

Build Status Coverage Status Dependency Status Data Table Directive

Documentation & Live Demo

http://nickburns2006.github.io/rxDataTable/

Overview

The rx-data-table directive is designed to pretty much be a catch-all solution for displaying data in a table format in a basic or extremely complex style. It has some basic CSS styling included, but provides hooks for you to attach conditional styles to each row or column.

Some Key Features

Get started

  1. You must already have an angular project set up.
  2. Install via bower:
    bower install angular-rx-data-table
  3. Include angular-rx-data-table in your code
    <link href="https://github.com/stephengolub/rxDataTable/blob/master/bower_components/angular-rx-data-table/dist/styles/rx-data-table.min.css" rel="stylesheet">
    <script src="https://github.com/stephengolub/rxDataTable/raw/master/bower_components/angular-rx-data-table/dist/scripts/rx-data-table.min.js"></script>
  4. Add the module to your app's dependencies:
    var app = angular.module("app", ["rxDataTable"]);
  5. For further instructions on how to use the directive, view the full documentation here.

Dependencies

Obviously this requires you to have an angularjs project to use this.

This project uses the angular-xeditable for it's inline editing capabilities.

TODO

...

License

MIT