Hi,
In one of the recent releases, the default width of the RadzenDropDown has shrunk so that only a single character is visible. The entire component is narrow, not just the drop down list.
I have been fixing by adding a Style attribute and setting it to 100%. But I have a lot of drop downs.
Was this an intentional change? How to remedy? I'm on version 5.9.6
Thanks,
Mike
<div class="col-md-3">
<RadzenText TextStyle=TextStyle.Subtitle2 TagName="TagName.H3">State</RadzenText>
<RadzenDropDown Name="State"
TValue=string
Data=@states
@bind-Value=state />
</div>

Hi @sys_mike,
No, this is not an intentional change. To be honest I see it for the first time. I suspect some CSS affects the display of RadzenDropDown. You can inspect it with your browser's developer tools to see what CSS rules apply.
Hi korchev,
I see what's going on...
If no default value is set, that's when the width collapses.
When a value is selected, the dropdown auto-sizes to the selected value.
In the past, I think the dropdown would auto-size based on the length of values in the list. I never had to set the width before.
I confirmed on your demo - if you remove default value, and remove width 100%, it collapses and it's hard to see options in the list.
Thanks,
Mike
I see what you mean. The dropdown never auto-sized based on the length of the items - that's for sure. It probably had some width set by default. Probably @yordanov will know more. For now I suggest to set either width or min-width.