I need to set the value from popup lov column in item when (selection change (interactive grid)), but the value appears like [object Object]
This is my code:
this.data.selectedRecords.length != 1 ? '': this.data.model.getValue(
this.data.selectedRecords[0], "DEPTNO")
How I can show the true value?
console.log(this.data.model.getValue( this.data.selectedRecords[0], "DEPTNO"))
- Dan McGhan