Skip to content

Commit

Permalink
Vue DataGrid - Cascading Lookups fix (#3179)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanblinov2k17 authored Mar 21, 2024
1 parent a39db3c commit f732421
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JSDemos/Demos/DataGrid/CascadingLookups/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ import {
} from './data.ts';
function setStateValue(
column: DxDataGridTypes.Column, newData: Employee, value: number, currentRowData: Employee,
this: DxDataGridTypes.Column, newData: Employee, value: number, currentRowData: Employee,
) {
newData.CityID = null;
column.defaultSetCellValue!(newData, value, currentRowData);
this.defaultSetCellValue!(newData, value, currentRowData);
}
const getFilteredCities = (options: { data: City }) => ({
Expand Down

0 comments on commit f732421

Please sign in to comment.