a-table

1.5.10 • Public • Published

a-table.js

Simple Table UI for generating table html

CircleCI npm version

Install

npm

npm install a-table

standalone

<script src="https://unpkg.com/a-table@1.4.10/build/a-table.min.js"></script>

css

<link rel="stylesheet" href="https://unpkg.com/a-table@1.4.10/css/a-table.css">

fonts

<link rel="stylesheet" type="text/css" href="https://unpkg.com/a-table@1.4.10/fonts/a-table-icon.css">

Demo

https://appleple.github.io/a-table.js/

Usage

import aTable from 'a-table';
const table = new aTable('.table', {
  lang:'ja',
  mark:{
    btn:{
      group:'acms-admin-btn-group acms-admin-btn-group-inline',
      item:'acms-admin-btn',
      itemActive:'acms-admin-btn acms-admin-btn-active'
    }
  },
  selector:{
    option:[
      {label:'赤',value:'red'},
      {label:'青',value:'blue'},
      {label:'黄色',value:'yellow'}
    ]
  }
});
table.afterRendered =
table.afterEntered = function(){
  document.querySelector('.test').innerText = this.getTable();
  document.querySelector('.markdown').innerText = this.getMarkdown();
}
table.afterRendered();

Licence

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i a-table

Weekly Downloads

264

Version

1.5.10

License

MIT

Unpacked Size

420 kB

Total Files

30

Last publish

Collaborators

  • appleple