|
<code>
onBound() {
let val : string = this.selectedBankId;
this.selectedBankId = null;
this.selectedBankId = val;
}
</code> |
Hello Team
I am haivng same issue on
can you pleaser review following stackblitz
https://stackblitz.com/edit/angular-xktooe-fqwena?file=package.json,templatedriven.component.ts
and let me know what I am doing incorre
Based on the information you have provided, we suspect that you are attempting to remove the selected value from the dropdownlist component. You can set the value property to null directly in order to remove the value from the component. Please refer to the modified sample below for reference.
|
changeData() { this.selectedValue = null; } |