nikhil-varma / Mithril_Data_Table

Data table using Mithril.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DataTable

A basic re-usable Table component in Mithril.js

Usage

 <Table 
          pageSize={config.page.size} 
          data={[]} 
          columns={["","Locn_Nrb", "online_ord_Id", "KSN_Id", "SKU_Pro_Type_Cd"]} 
          showSerialNo={false} 
        /> 
 

Data format(Current)

let data = [{ 
    "0": "sample",
    "1": "sample",
    "21":"sample",
    "12":"sample",
    "31":"sample"
  }] 

It includes a self contained Paging library.

About

Data table using Mithril.js


Languages

Language:JavaScript 96.0%Language:HTML 4.0%