At the moment, replace the whole lookup object.
<dxi-column dataField="ID" caption="State" [width]="400" [lookup]="stateLookup">
</dxi-column>
setStates(): void {
this.loadService
.getStates().then(
data => {
this.stateLookup = {
dataSource: {
store: {
type: 'array',
data: data
},
paginate: true,
pageSize: 50
},
displayExpr: "Name",
valueExpr: "ID"
};
}
);
}
This issue was fixed in DevExtreme 16.2.7
I have the same issue. I spent hours but couldn't solve it.
This issue still exist
Still have this issue in 20.1.8
Most helpful comment
I have the same issue. I spent hours but couldn't solve it.