I have a dropdown and with few values and to call a method on dropdown value change. on changing the dropdown value, the function is not invoking.
I am unable to figure out the exact issue. Below is the code and let me know are there any errors.
`
private wireup(): void {
this.view.on("invokeDorpdownChange", () => this.invokeDorpdownChange());
}
invokeDorpdownChange(): any {
// Logic
}
<div >
<select on-change="invokeDorpdownChange">
<option value="1" selected="selected">Today</option>
<option value="2">Tomorrow</option>
<option value="3">This week</option>
<option value="4">This month</option>
<option value="5">Next month</option>
</select>
</div>`