Giter Site home page Giter Site logo

maixuanhan / angular2-smart-table Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dj-fiorex/angular2-smart-table

0.0 0.0 0.0 5.56 MB

Angular 2 Smart Data Table component

Home Page: https://dj-fiorex.github.io/angular2-smart-table/

License: MIT License

TypeScript 80.22% CSS 7.05% HTML 10.98% SCSS 1.75%

angular2-smart-table's Introduction

Angular Smart Table Component

๐Ÿš€ This fork will be updated and maintained! ๐Ÿš€

I'm a self-employed developer so any help is welcome, open a pull request and help me improve this library

NEW Features

  • ๐Ÿš€ Added hide/show row
  • ๐Ÿš€ Added Expandable Row (thanks Samir)
  • ๐Ÿš€ Added Column resizing (thanks dreswgfuse)
  • ๐Ÿš€ Added Multi Select for a column (thanks thangluu93)
  • ๐Ÿš€ Added type to Settings object
  • ๐Ÿš€ Added Column resizing (thanks dreswgfuse)
  • ๐Ÿš€ Added custom action render component (thanks bacali95)
  • ๐Ÿš€ Added Column sorting/filtering to nested objects (thanks TejinderEvry)
  • ๐Ÿš€ Added row data to custom component render (thanks marchrius)
  • ๐Ÿš€ Include row data when invoking filterFunction (thanks darrenhollick)
  • ๐Ÿš€ Ability to select a row programmatically (thanks NicolaLC)

Features

  • Local data source (Server/API DataSource is on its way)
  • Filtering
  • Sorting
  • Pagination
  • Inline Add/Edit/Delete
  • Flexible event model

Installation

The library is available as npm package, so all you need to do is to run the following command:

npm i angular2-smart-table

This command will create a record in your package.json file and install the package into the npm modules folder.

Minimal Setup Example

First thing you need to do is to import the angular2-smart-table directives into your component.


import { Angular2SmartTableModule } from 'angular2-smart-table';

Then register it by adding to the list of directives of your module:

// ...

@NgModule({
  imports: [
    // ...
    
    Angular2SmartTableModule,
    
    // ...
  ],
  declarations: [ ... ]
})
// ...

Now, we need to configure the table and add it into the template. The only required setting for the component to start working is a columns configuration. Let's register settings property inside of the component where we want to have the table and configure some columns Settings documentation:

settings: Settings = {
  columns: {
    id: {
      title: 'ID'
    },
    name: {
      title: 'Full Name'
    },
    username: {
      title: 'User Name'
    },
    email: {
      title: 'Email'
    }
  }
};

Finally let's put the angular2-smart-table component inside of the template:

// ...

@Component({
  template: `
    <angular2-smart-table [settings]="settings"></angular2-smart-table>
  `
})
// ...

At this step you will have a minimal configured table. All functions are available by default and you don't need to configure them anyhow, so now you can add/edit/delete rows, sort or filter the table, etc.

Still it seems like something is missing... Right, there is no data in the table by default. To add some, let's create an array property with a list of objects in the component. Please note that object keys are the same as in the columns configuration.

data = [
  {
    id: 1,
    name: "Leanne Graham",
    username: "Bret",
    email: "[email protected]"
  },
  {
    id: 2,
    name: "Ervin Howell",
    username: "Antonette",
    email: "[email protected]"
  },
  
  // ... list of items
  
  {
    id: 11,
    name: "Nicholas DuBuque",
    username: "Nicholas.Stanton",
    email: "[email protected]"
  }
];

And pass the data to the table:

// ...

@Component({
  template: `
    <angular2-smart-table [settings]="settings" [source]="data"></angular2-smart-table>
  `
})
// ...

Now you have some data in the table. -->

Further Documentation

Installation, customization and other useful articles: https://github.com/dj-fiorex/angular2-smart-table

How can I support developers?

  • Star our GitHub repo โญ
  • Create pull requests, submit bugs, suggest new features or documentation updates ๐Ÿ”ง

License

MIT license.

Special thanks to our CURRENT awesome mantainers and contributors!

hexdecimal16 tawfiek uap-universe

Special thanks to AKVEO team for starting this project!

nnixaalexzhukovdamnkoTibingEzeonDeilanhosweystacyakveoAkshaymisal5geneeblackvvandoorneananthhhbis-sbtadashi-aikawa

nurehavlupu10zhouhao27hkb1990liaosongktriek

From dj-fiorex, forked from akveo

angular2-smart-table's People

Contributors

nnixaa avatar uap-universe avatar dj-fiorex avatar damnko avatar hexdecimal16 avatar lexzhukov avatar tibing-old-email avatar yggg avatar deilan avatar marchrius avatar darrenhollick avatar craftycorvid avatar bacali95 avatar maixuanhan avatar stacyakveo avatar hoswey avatar beranick avatar mmfkupl avatar ezeon avatar vvandoorne avatar ov3rk1ll avatar mishkolesnikov avatar infuse89 avatar hkb1990 avatar dimaatkaev avatar zhouhao27 avatar vlupu10 avatar bylertall avatar tossp avatar tejinderevry avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.