Skip to content
This repository has been archived by the owner on Sep 18, 2020. It is now read-only.

mindsmash/mindsmash-angular-table

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mindsmash-table

Yet another data table for AngularJS. The current implementation features data sorting, pagination, filters and more. The library is designed to easily integrate with a Spring Boot application backend, but can also be used with any other framework.

Table of Contents

1. Installation

  1. Download the latest release or the current master from GitHub. You can also use Bower to install the latest version:
$ bower install mindsmash-angular-table --save
  1. Include the library in your website (please use either the minified or unminified file in the dist directory):
<link rel="stylesheet" href="mindsmash-angular-table/mindsmash-angular-table.min.css"/>
<script src="mindsmash-angular-table/mindsmash-angular-table.min.js"></script>
  1. Add uxTable as a dependency to your app:
angular.module('your-app', ['mindsmash-table']);

Back to top

2. Usage

Back to top

3. API

Back to top

Contributors

License

The MIT License (MIT)

Copyright (c) 2015 mindsmash GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.