Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

November kb #645

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,150 changes: 1,150 additions & 0 deletions knowledge-base/examples/excel-export-treelist-expanded-rows/data.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { createApp } from 'vue'
import App from './main.vue'

createApp(App).mount('#app')
113 changes: 113 additions & 0 deletions knowledge-base/examples/excel-export-treelist-expanded-rows/main.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
<template>
<TreeList
:style="{
maxHeight: '510px',
overflow: 'auto',
}"
:expand-field="expandField"
:sub-items-field="subItemsField"
:data-items="processedData"
:columns="columns"
@expandchange="onExpandChange"
:toolbar="'toolbar'"
>
<template v-slot:toolbar>
<KButton :theme-color="'primary'" @click="exportExcel"
>Export Excel</KButton
>
</template>
</TreeList>
</template>

<script>
import employees from './data';
import { saveExcel } from '@progress/kendo-vue-excel-export';
import { Button } from '@progress/kendo-vue-buttons';
import {
TreeList,
treeToFlat,
mapTree,
extendDataItem,
} from '@progress/kendo-vue-treelist';

export default {
components: {
TreeList,
KButton: Button,
},
data() {
return {
employees,
subItemsField: 'employees',
expandField: 'expanded',
expanded: [1, 2, 32],
columns: [
{
field: 'name',
title: 'Name',
width: '250px',
expandable: true,
},
{
field: 'hireDate',
title: 'Hire Date',
width: '200px',
format: '{0:d}',
},
{
field: 'timeInPosition',
title: 'Year(s) in Position',
width: '200px',
},
{
field: 'fullTime',
title: 'Full Time',
width: '100px',
},
],
};
},
computed: {
processedData() {
let data = this.employees;
return this.addExpandField(data);
},
},
methods: {
exportExcel() {
const fullyExpandedData = mapTree(
this.employees,
this.subItemsField,
(item) =>
extendDataItem(item, this.subItemsField, {
[this.expandField]: true,
})
);
saveExcel({
fileName: 'myFile',
data: treeToFlat(
fullyExpandedData,
this.expandField,
this.subItemsField
),
columns: this.columns,
hierarchy: true,
});
},
onExpandChange(e) {
this.expanded = e.value
? this.expanded.filter((id) => id !== e.dataItem.id)
: [...this.expanded, e.dataItem.id];
},
addExpandField(dataTree) {
const expanded = this.expanded;
return mapTree(dataTree, this.subItemsField, (item) =>
extendDataItem(item, this.subItemsField, {
[this.expandField]: expanded.includes(item.id),
})
);
},
},
};
</script>

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { createApp } from 'vue'
import App from './main.vue'

createApp(App).mount('#app')
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<template>
<div class="container">
<div class="row justify-content-center">
<div class="col" style="padding-right: 0">
<h6>Not Discontinued</h6>
<ListBox
:style="{ height: '400px', width: '100%' }"
:dataItems="notDiscontinued"
:textField="'ProductName'"
:selectedField="SELECTED_FIELD"
:toolbar="'toolbar'"
:item="'item'"
>
<template v-slot:item="{ props }">
<div
@dblclick="
handleDoubleClick(
props.dataItem,
'notDiscontinued',
'discontinued'
)
"
>
<span :style="{ fontWeight: 'bold' }">{{
props.dataItem.ProductName
}}</span>
<br />
<span>Price: {{ props.dataItem.UnitPrice }}$</span>
</div>
</template>
</ListBox>
</div>
<div class="col" style="padding-right: 0; padding-left: 9px">
<h6>Discontinued</h6>
<ListBox
:style="{ height: '400px', width: '100%' }"
:dataItems="discontinued"
:textField="'ProductName'"
:selectedField="SELECTED_FIELD"
:item="'item'"
>
<template v-slot:item="{ props }">
<div
@dblclick="
handleDoubleClick(
props.dataItem,
'discontinued',
'notDiscontinued'
)
"
>
<span :style="{ fontWeight: 'bold' }">{{
props.dataItem.ProductName
}}</span>
<br />
<span>Price: {{ props.dataItem.UnitPrice }}$</span>
</div>
</template>
</ListBox>
</div>
</div>
</div>
</template>
<script>
import { ListBox, ListBoxToolbar } from '@progress/kendo-vue-listbox';
import products from './products.json';

const parsedProducts = products.map((product) => {
product.selected = false;
return product;
});

const SELECTED_FIELD = 'selected';

export default {
components: {
ListBox,
ListBoxToolbar,
},
data() {
return {
SELECTED_FIELD,
notDiscontinued: parsedProducts.filter(
(product) => !product.Discontinued
),
discontinued: parsedProducts.filter((product) => product.Discontinued),
};
},
methods: {
handleDoubleClick(dataItem, sourceList, targetList) {
this[sourceList] = this[sourceList].filter(
(item) => item.ProductID !== dataItem.ProductID
);
this[targetList] = [...this[targetList], dataItem];
},
},
};
</script>
Loading