Skip to content

Commit f732421

Browse files
Vue DataGrid - Cascading Lookups fix (#3179)
1 parent a39db3c commit f732421

File tree

1 file changed

+2
-2
lines changed
  • JSDemos/Demos/DataGrid/CascadingLookups/Vue

1 file changed

+2
-2
lines changed

JSDemos/Demos/DataGrid/CascadingLookups/Vue/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ import {
5353
} from './data.ts';
5454
5555
function setStateValue(
56-
column: DxDataGridTypes.Column, newData: Employee, value: number, currentRowData: Employee,
56+
this: DxDataGridTypes.Column, newData: Employee, value: number, currentRowData: Employee,
5757
) {
5858
newData.CityID = null;
5959
60-
column.defaultSetCellValue!(newData, value, currentRowData);
60+
this.defaultSetCellValue!(newData, value, currentRowData);
6161
}
6262
6363
const getFilteredCities = (options: { data: City }) => ({

0 commit comments

Comments
 (0)