Placeholder for dropdownlist could be a great thing, because defaultItem not have the same use. I just want to show text when nothing is select, but I do not want that the dropdownlist have nothing selected (or the defaultItem) when we have already selected an item. The defaultItem can be selected again and it is not the same use of placeholder.
Thanks for reading.
The reason we do not provide placeholder for the DropDownList is that according to UI concepts a placeholder should exist on inputs only. The DropDownList on the other hand resembles a <select> tag in HTML and <select> does not support placeholders as well. If the requirement is to have placeholder, a possible solutions is to use the ComboBox - here is a StackBlitz example.
Please let me know if this helps.