Lookup display format değişmeden columndan veri çekme örnek kod
this.applyChanges().then(() => {
let item = this.lu_Izin.selectedItems?.[0];
if (item) {
this.dt_Bitis.text = item.BITIS_TARIHI;
this.nb_MusteriSorulusuID.text = item.SORUMLUID;
} else {
this.dt_Bitis.text = null;
this.nb_MusteriSorulusuID.text = null
}
})