Today I upgraded one of our web apps to the latest version of UI for ASP.NET MVC and since then the DropDownList component doesn't appear to be rendering/styled correctly. I recreated the theme using the Progress Sass Theme Builder tool to eliminate the stylesheet itself as the issue. I've included screenshots below of what the DropDownList component looks like before and after the upgrade. Can anyone advise? Thanks in advance.
Before upgrade:-
After upgrade:-
Implementation:-
@(Html.Kendo().DropDownListFor(model => model.AssetSubTypeId)
.OptionLabel("Asset Type/Subtype...")
.BindTo(new SelectList(Lookups.AssetTypeSubType, "Key", "Value"))
.Events(events =>
{
events.Change("onChange_AssetSubTypeDropDownList");
}))