|
2 yıl önce | |
---|---|---|
cypress | 2 yıl önce | |
dist | 2 yıl önce | |
src | 2 yıl önce | |
test | 2 yıl önce | |
.eslintignore | 2 yıl önce | |
.eslintrc | 2 yıl önce | |
.gitignore | 2 yıl önce | |
LICENSE | 2 yıl önce | |
README.md | 2 yıl önce | |
cypress.json | 2 yıl önce | |
index.html | 2 yıl önce | |
package.json | 2 yıl önce | |
rollup.config.js | 2 yıl önce | |
yarn.lock | 2 yıl önce |
InfluxFramework DataTable is a simple, modern and interactive datatable library for displaying tabular data. Originally built for InfluxERP, it can be used to render large amount of rows without sacrificing performance and has the basic data grid features like inline editing and keyboard navigation. It does not require jQuery, unlike most data grids out there.
yarn add influxframework-datatable
# or
npm install influxframework-datatable
Note:
sortablejs
is required to be installed as well.
const datatable = new DataTable('#datatable', {
columns: [ 'First Name', 'Last Name', 'Position' ],
data: [
[ 'Don', 'Joe', 'Designer' ],
[ 'Mary', 'Jane', 'Software Developer' ]
]
});
yarn start
- Start dev serverindex.html
located in the root folder, and start development.yarn lint
before committing changesyarn commit
command instead of git commit