DropDown Placeholder Not Displaying

When rendering the page, the Placeholder value is not displaying in the DropDown. It's just showing blank.

public List TimeZoneChoices = new() { "Central Time", "Eastern Time", "Pacific Time", "Mountain Time", "Hawaii Time" };

<RadzenDropDown Style="width: 200px" @bind-Value="_review.TimeZone" Data="@_review.TimeZoneChoices" Placeholder="-- Select --" />

Hi @fr33kyd33ky,

Your code seems to work fine for me. Check what TimeZone is set to - it should be null in order for the placeholder to display.
placeholder

1 Like