ColumnToggler demo for DataTable

pull/41/head
cagataycivici 2019-07-09 16:07:57 +03:00
parent 96362b6e97
commit ef1f1d8a1c
2 changed files with 19 additions and 7 deletions

View File

@ -10,12 +10,14 @@
</div>
<div class="content-section implementation">
<h3 class="first">Basic</h3>
<DataTable :value="cars">
<Column field="vin" header="Vin"></Column>
<Column field="year" header="Year"></Column>
<Column field="brand" header="Brand"></Column>
<Column field="color" header="Color"></Column>
<template #header>
<div style="text-align:left">
<MultiSelect v-model="columns" :options="columnOptions" optionLabel="header" placeholder="Select Columns" style="width: 20em"/>
</div>
</template>
<Column field="vin" header="Vin" />
<Column v-for="col of columns" :field="col.field" :header="col.header" :key="col.field"></Column>
</DataTable>
</div>
</div>
@ -28,12 +30,22 @@ import DataTableSubMenu from './DataTableSubMenu';
export default {
data() {
return {
columns: null,
columnOptions: null,
cars: null
}
},
carService: null,
created() {
this.carService = new CarService();
this.columns = [
{field: 'year', header: 'Year'},
{field: 'brand', header: 'Brand'},
{field: 'color', header: 'Color'}
];
this.columnOptions = [...this.columns];
},
mounted() {
this.carService.getCarsSmall().then(data => this.cars = data);

View File

@ -19,7 +19,7 @@
</DataTable>
<h3>Dynamic Columns</h3>
<DataTable :value="cars" :columns="columns">
<DataTable :value="cars">
<Column v-for="col of columns" :field="col.field" :header="col.header" :key="col.field"></Column>
</DataTable>
@ -52,7 +52,7 @@ export default {
{field: 'year', header: 'Year'},
{field: 'brand', header: 'Brand'},
{field: 'color', header: 'Color'}
]
];
},
mounted() {
this.carService.getCarsSmall().then(data => this.cars = data);