vaadin / vaadin-combo-box-flow

Vaadin Flow Java API for vaadin/vaadin-combo-box Web Component
https://vaadin.com/components/vaadin-combo-box
Other
5 stars 9 forks source link

Please make dropdown width configurable #387

Closed mvysny closed 4 years ago

mvysny commented 4 years ago

In certain apps, certain ComboBoxes tend to have items with long texts. If the text won't fit the default dropdown popup width, the text will wrap, which is often not desired.

It would be good to have a means to override the dropdown width and specify an exact number in pixels.

Workaround can be found in the forums: https://vaadin.com/forum/thread/18082676/combobox-dropdown-list-width

mvysny commented 4 years ago

There's even simpler workaround without any need to introduce custom CSS:

comboBox.element.style.set("--vaadin-combo-box-overlay-width", width.trim())
web-padawan commented 4 years ago

Closing as duplicate of #155