-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.vue
64 lines (60 loc) · 1.33 KB
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<template>
<DxDataGrid
:data-source="employees"
@editor-preparing="onEditorPreparing">
<DxEditing
:allow-updating="true"
:allow-adding="true" />
<DxColumn
caption="Name"
data-field="CustomerID"
:set-cell-value="setCellValue">
<DxLookup
:data-source="customers"
value-expr="CustomerID"
display-expr="CustomerName" />
</DxColumn>
<DxColumn data-field="Address" />
<DxColumn data-field="Phone" />
</DxDataGrid>
</template>
<script>
import DxDataGrid, {
DxEditing,
DxColumn,
DxLookup,
} from "devextreme-vue/data-grid";
import { customers, employees } from "./data";
export default {
name: "App",
components: {
DxDataGrid,
DxEditing,
DxColumn,
DxLookup,
},
data() {
return {
customers: customers,
employees: employees
};
},
methods: {
onEditorPreparing(e) {
if (e.parentType === "dataRow" && e.dataField === "CustomerID") {
e.editorOptions.onValueChanged = function (ev) {
let selectedItem = ev.component.option("selectedItem");
e.setValue(selectedItem);
};
}
},
setCellValue(rowData, value) {
rowData.CustomerID = value.CustomerID;
rowData.Address = value.Address;
rowData.Phone = value.Phone;
},
},
};
</script>
<style>
</style>