Skip to content

figalex/ng-table

 
 

Repository files navigation

Table + AngularJS

Code licensed under New BSD License.

This directive allow to liven your tables. It support sorting, filtering and pagination. Header row with titles and filters automatic generated on compilation step.

Installing via Bower

bower install https://github.com/esvit/ng-table.git

Examples (from simple to complex)

Usage

<table ng-table="tableParams" show-filter="true">
<tr ng-repeat="user in users">
    <td title="Name" filter="{ 'name': 'text' }" sortable="name">
        {{user.name}}
    </td>
    <td title="Age" filter="{ 'action': 'button' }" sortable="age">
        {{user.age}}
    </td>
</tr>
</table>

About

Simple table with sorting and filtering on AngularJS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 86.4%
  • CoffeeScript 13.6%