Created
February 16, 2017 21:45
-
-
Save eddy-geek/9103b001a8c5b1ae563cbb562d728003 to your computer and use it in GitHub Desktop.
ngx-datatable-column + toggle does not work
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'column-toggle-demo', | |
template: ` | |
<div> | |
<h3>Column Toggling</h3> | |
<div style='float:left;width:75%'> | |
<ngx-datatable | |
class='material' | |
[rows]='rows' | |
[columns]="columns" | |
[columnMode]="'force'" | |
[headerHeight]="50" | |
[footerHeight]="50" | |
[rowHeight]="'auto'"> | |
<ngx-datatable-column name="Name" [frozenLeft]="true"> | |
</ngx-datatable-column> | |
<ngx-datatable-column name="Gender"> | |
</ngx-datatable-column> | |
<ngx-datatable-column name="Company"> | |
<template ngx-datatable-cell-template let-value="value" let-row="row"> | |
<span title="Double click to edit" (dblclick)="editing[row.$$index + '-company'] = true" *ngIf="!editing[row.$$index + '-company']"> | |
{{value}} | |
</span> | |
<input autofocus (blur)="updateValue($event, 'company', value, row)" *ngIf="editing[row.$$index + '-company']" type="text" [value]="value" | |
/> | |
</template> | |
</ngx-datatable-column> | |
</ngx-datatable> | |
</div> | |
<div class='selected-column'> | |
<h4>Available Columns</h4> | |
<ul> | |
<li *ngFor='let col of allColumns'> | |
<input | |
type='checkbox' | |
[id]="col.name" | |
(click)='toggle(col)' | |
[checked]='isChecked(col)' | |
/> | |
<label [attr.for]="col.name">{{col.name}}</label> | |
</li> | |
</ul> | |
</div> | |
</div> | |
` | |
}) | |
export class ColumnToggleComponent { | |
rows = [ | |
{ | |
name: 'Claudine Neal', | |
gender: 'female', | |
company: 'Sealoud' | |
}, | |
{ | |
name: 'Beryl Rice', | |
gender: 'female', | |
company: 'Velity' | |
} | |
]; | |
columns = [ | |
{ name: 'Name' }, | |
{ name: 'Gender' }, | |
{ name: 'Company' } | |
]; | |
allColumns = [ | |
{ name: 'Name' }, | |
{ name: 'Gender' }, | |
{ name: 'Company' } | |
]; | |
editing = {}; | |
toggle(col) { | |
const isChecked = this.isChecked(col); | |
if (isChecked) { | |
this.columns = this.columns.filter(c => { | |
return c.name !== col.name; | |
}); | |
} else { | |
this.columns = [...this.columns, col]; | |
} | |
} | |
isChecked(col) { | |
return this.columns.find(c => { | |
return c.name === col.name; | |
}); | |
} | |
updateValue(event, cell, cellValue, row) { | |
this.editing[row.$$index + '-' + cell] = false; | |
this.rows[row.$$index][cell] = event.target.value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment