1.0.3 • Published 6 years ago

drag-select-table v1.0.3

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

NgDragSelectTable

NPM

NPM Version NPM Downloads Node Version

angular 6 component

预览图

This project is a Demo, you can clone it to build. Public component in projects folder

Install

npm install drag-select-table --save
or
yarn add drag-select-table

Usage

import { DragSelectTableModule } from 'drag-select-table';

@NgModule({
  imports: [
    ...
    DragSelectTableModule
  ],
})

simple

It's 5 row and 5 column as default.

<ds-table></ds-table>

emit valuesChange

import { Component } from '@angular/core';

@Component({
    selector: 'drag-select-table-demo',
    template: `<ds-table [row]="row" [column]="col" (valuesChange)="updateValues($event)"></ds-table>`
})
export class MultiSelectTableDemo {
    public row = 7;
    public col = 7;

    public updateValues(values) {
        console.log(values);
    }
}

bidirectional bindings

import { Component } from '@angular/core';

@Component({
    selector: 'drag-select-table-demo',
    template: `<ds-table [row]="row" [column]="col" [(values)]="resTable"></ds-table>`
})
export class MultiSelectTableDemo {
    public row = 7;
    public col = 7;
    public resTable = [];
}

Demo Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Demo Build

MIT License

Copyright (c) 2018 kai

1.0.3

6 years ago

1.0.2

6 years ago

0.0.1

6 years ago