biosheet

1.0.13 • Public • Published

Installation

npm install biosheet

Basic demo

You should initiate your table based on a div container, such as:

<div id="mysheet"></div>

To initialize a biosheet CE table you should run a JavaScript, such as:

var data = [
    ['Jazz', 'Honda', '2019-02-12', '', true, '$ 2.000,00', '#777700'],
    ['Civic', 'Honda', '2018-07-11', '', true, '$ 4.000,01', '#007777'],
];

bioexcel(document.getElementById('mysheet'), {
    data:data,
    columns: [
        { type: 'text', title:'Car', width:120 },
        { type: 'dropdown', title:'Make', width:200, source:[ "Alfa Romeo", "Audi", "Bmw" ] },
        { type: 'calendar', title:'Available', width:200 },
        { type: 'image', title:'Photo', width:120 },
        { type: 'checkbox', title:'Stock', width:80 },
        { type: 'numeric', title:'Price', width:100, mask:'$ #.##,00', decimal:',' },
        { type: 'color', width:100, render:'square', }
     ]
});

Readme

Keywords

none

Package Sidebar

Install

npm i biosheet

Weekly Downloads

0

Version

1.0.13

License

ISC

Unpacked Size

589 kB

Total Files

4

Last publish

Collaborators

  • yuripaii