0.1.1 • Published 3 years ago

ngu-datatable v0.1.1

Weekly downloads
33
License
MIT
Repository
github
Last release
3 years ago

NguDatatable

This library is used to create a table for Angular

Installation

To install ngu-datatable, run npm install through npm package manager using the below command

npm i ngu-datatable

Import Module

Import NguDatatableModule in the imports section of your angular module.

Creating a new datatable

<ngu-datatable [data]="data">
    <ngu-datatable-column property="id">
        <ng-container *nguDatatableHeader>header1</ng-container>
        <ng-container *nguDatatableCell="let row">
            <input [value]="row.id">
        </ng-container>
   </ngu-datatable-column>
   <ngu-datatable-column property="title">
        <ng-container *nguDatatableHeader>header 2</ng-container>
        <ng-container *nguDatatableCell="let row">{{ row.title }}</ng-container>
   </ngu-datatable-column>
</ngu-datatable>

Further help

0.1.1

3 years ago

0.1.0

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago