kendo-react
kendo-react copied to clipboard
DropDowns popupSettings not working as expected
The popupSettings do not apply some of the properties to certain components, for example:
- width is not applied to the DropDownTree's popup (reported in 1521089)
- height is not applied to all dropdowns' popups
This is visible in the following demo: https://stackblitz.com/edit/react-ty6qkx?file=app/main.jsx
Are there any workarounds for this issue while it's being fixed?
For anyone else having this issue, we found the following workaround:
<DropDownTree
...
popupSettings={{ className: 'dropDownTree' }}
/>
using the following CSS:
.dropDownTree {
width: 400px !important;
height: 650px !important;
overflow: auto !important;
}
reported again in 1559018 for DropDownTree's
Reported again in Ticket ID: 1578471 (for MultiSelect)
Reported again in Ticket ID: 1583249
Reported in Ticket ID: 1602612 for DropDownTree
I've also noticed this in MultiSelectTree.
Reported in Ticket ID: 1623884
Is it possible to up the priority for this bug? This is a show stopper for us.
@surajts I increased this bug's priority based on the number of times it was reported (9 times). It is now among the top 10 bugs with the highest priority.
Reported in Ticket ID: 1638197 for the MultiSelectTree