0.1.71 • Published 2 years ago

projet14-datatable v0.1.71

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Projet14 from open class room.

Convert the jquery datatable plugin to a react component.

you should be able to use the plugin by following this example : in react component :

    <DataTable
        data={employeList}
        columns={[
            { title: 'First Name', data: 'firstName' },
            { title: 'Last Name', data: 'lastName' },
            { title: 'Start Date', data: 'startDate' },
            { title: 'Department', data: 'department' },
            { title: 'Date of Birth', data: 'dateOfBirth' },
            { title: 'Street', data: 'street' },
            { title: 'City', data: 'city' },
            { title: 'State', data: 'state' },
            { title: 'Zip Code', data: 'zipCode' },
        ]}
    />

In this example, we format a json file : employeList json file :

export const employeList = [
    {
    firstName: 'sebastien',
    lastName: 'Mitterand',
    dateOfBirth: '4/2/2008',
    startDate: '11/4/1982',
    department: 71,
    street: 'rue du champ de mars',
    city: 'Orléans',
    state: 'DC',
    zipCode: '71659',
    },
    ...
]

So, we give to the component the data json to format, and we give it all the row title, and the data to bind to it.

That's all.

npm install projet14-datatable

0.1.7

2 years ago

0.1.71

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago