New to Kendo UI for Angular? Start a free 30-day trial
Appearance
The Dropdowns enable you to set their width and the width of the popup, which contains the list of suggestions or options.
To specify the width of the components, set the width
CSS property.
To specify the width of the popup, which contains the list of suggestion or options, set the popupSettings
property. By default, the popup acquires you to have a set width of the component.
html
<kendo-dropdownlist
[data]="listItems"
[popupSettings]="{
width: 450,
height: 150
}"
style="width: 350px;">
</kendo-dropdownlist>