nr-grid
TypeScript icon, indicating that this package has built-in type declarations

0.0.71 • Public • Published

NRGrid

NR-Grid is basic a datagrid helper that uses Bootstrap and NgbBootstrap and developed for Angular applications.

Basic Usage

app.component.html

<nr-grid [options]="gridOptions"></nr-grid>

app.component.ts

gridOptions: NRGridOptions = {

     columns: [
       {
         name: 'id',
         title: 'Id'
       },
       {
         name: 'name',
         title: 'Name'
       }
     ],
     data: [
       {id: 1, name: 'test 1'},
       {id: 2, name: 'test 2'},
       {id: 3, name: 'test 3'},
     ]
   };

Package Sidebar

Install

npm i nr-grid

Homepage

nrtech.net

Weekly Downloads

8

Version

0.0.71

License

none

Unpacked Size

625 kB

Total Files

63

Last publish

Collaborators

  • mightwind