What is Smart Table?
Smart table is an Angularjs module to easily display data in a table with a set of built in features such filtering,sorting, etc in a declarative way. While developing this module I made sure to focus on these particular points.
Its features are
Lightweight: smart-table is less than 4kb minified and has no dependencies other than Angular itself. And you can even reduce its size with a custom build if you are not interested in some of the plugins.
Robust: smart-table is widely tested which makes the module really stable
Modular and extensible: The core features can be accessed with the controller
API which is created by the top level directive. Then
a set of directives (plugins) allow you to compose you table behavior in a declarative way.
Developer friendly: the design of the module has been thought carefully and it is really
easy to get into the source code to modify/customise the module to best fit your needs.
For using Smart Table We need to add module in Angular Js like below
angular.module('myApp',['smart-table']
st-table is the directive which tells the table is for smart table.
For Example
<table st-table="" >
</table>
For more reference refer this below link
http://lorenzofox3.github.io/smart-table-website/