Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
The dropdownlist with select tag updating value wrongly when it contains Empty as inner text and “” as value as like below code snippet.
Sample: https://stackblitz.com/edit/m2csg8-icznxc?file=index.ts
Replication procedure:
1. Run the above sample.
2. Choose the text Empty from popup.
3. Text updated as Empty correctly.
4. Actual: Value updated as Empty.
5. Expected: Value should be updated as “”.
<select id="games">
<option value="Game1">American Football</option>
<option value="">Empty</option>
<option value="Game3">Basketball</option>
<option value="Game4">Cricket</option>
</select>