Angular 2でng-tableを使用してテーブルを作成するのは簡単ですが、テーブルの先頭にチェックボックスの列を入力して、特定の行が選択されるたびにそのデータも選択されるようにします。Angular 2でng-tableを使用する場合のチェックボックスの入力方法は?
Table.htmlは
<ng-table [config]="config"
(tableChanged)="onChangeTable(config)"
(cellClicked)="onCellClick($event)"
[rows]="rows" [columns]="columns">
</ng-table>
Table.tsが
@Component({
moduleId: module.id,
selector: 'table',
templateUrl: 'table.component.html',
styleUrls: ['table.component.css']
})
export class TableComponent implements OnInit {
public rows:Array<any> = [];
public columns:Array<any> = [
{title: 'Fruits', name: 'Description', filtering: {filterString: '', placeholder: 'Filter by description'}},
{title: 'Colour', name: 'Colour', sort: '', filtering: {filterString: '', placeholder: 'Filter by colour'}},
{title: 'Size', name: 'Size'}
];
public config:any = {
paging: true,
sorting: {columns: this.columns},
filtering: {filterString: ''},
className: ['table-striped', 'table-bordered']
};
私は、この表のチェックボックスの機能を実装する方法について混乱していますが含まれていますが含まれています。角2にいくつかの知識を共有することができれば幸いです。