Column Toggle Demo for TreeTable

pull/41/head
cagataycivici 2019-08-07 14:57:15 +03:00
parent f9ece9287f
commit fd04a1d00c
2 changed files with 65 additions and 0 deletions

View File

@ -415,6 +415,11 @@ export default new Router({
path: '/treetable/lazy',
name: 'treetablelazy',
component: () => import('./views/treetable/TreeTableLazyDemo.vue')
},
{
path: '/treetable/coltoggle',
name: 'treetablecoltoggle',
component: () => import('./views/treetable/TreeTableColToggleDemo.vue')
},
{
path: '/tristatecheckbox',

View File

@ -0,0 +1,60 @@
<template>
<div>
<TreeTableSubMenu />
<div class="content-section introduction">
<div class="feature-intro">
<h1>TreeTable - Column Toggle</h1>
<p>MultiSelect component can be used to implement column toggle functionality.</p>
</div>
</div>
<div class="content-section implementation">
<TreeTable :value="nodes">
<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="name" header="Name" :expander="true"></Column>
<Column v-for="col of columns" :field="col.field" :header="col.header" :key="col.field"></Column>
</TreeTable>
</div>
<TreeTableDoc />
</div>
</template>
<script>
import NodeService from '../../service/NodeService';
import TreeTableDoc from './TreeTableDoc';
import TreeTableSubMenu from './TreeTableSubMenu';
export default {
data() {
return {
nodes: null,
columnOptions: null,
columns: null
}
},
nodeService: null,
created() {
this.nodeService = new NodeService();
this.columns = [
{field: 'size', header: 'Size'},
{field: 'type', header: 'Type'}
];
this.columnOptions = [...this.columns];
},
mounted() {
this.nodeService.getTreeTableNodes().then(data => this.nodes = data);
},
components: {
'TreeTableDoc': TreeTableDoc,
'TreeTableSubMenu': TreeTableSubMenu
}
}
</script>