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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes

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>