Skip to content

gitter-badger/nativetable

 
 

Repository files navigation

Nativetable

build status standardjs style coverage status MIT license

Nativetable is a simple native es6 module to create and work with dynamics HTML tables.

Nativetable allow you to sort, filter and paginate your data in an HTML table. No useless features, only one line of code is required to load your data.

Check the demo page.

Installation

You can build your own Nativetable with this project.

Clone the project :

git clone https://git.nathanaelcherrier.com/mindsers/nativetable.git
cd nativetable

Install packages and build sources :

npm install
npm run build

Nativetable library is ready to be import on your project : src/scripts/build/nativetable.min.js

Usage

Add a script tag on your page to call Nativatable.

<script src="nativetable.min.js"></script>

Sample code

// Show all data in table.
let ntable = new Nativetable('tableid', { sources });
// Show table with more options
let ntable = new Nativetable('tableid', {
    sources: data,
    sorting: true,
    pagination: {
        maxLength: 5
    },
    columns: [
        "id",
        "name",
        "age"
    ],
    filters: {
      $and: {
        name: ['julie', 'sarah'],
        age: (age) => {
          return age >= 29 && age <= 39
        }
      },
      $or: {
        man: [false],
        brothers: [1]
      }
    }
});

Contribution

To contribute to this repo please follow the contribution guide.

License

This project is under the MIT License. (see LICENSE file in the root directory)

The MIT License (MIT)

Copyright (c) 2016 Nathanaël CHERRIER

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.

About

Simple native es6 module to create and work with dynamics HTML tables.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 91.3%
  • CSS 4.5%
  • HTML 4.2%