Hello
We have only one filter option in our Grid in a FilterMenu.
The previous css is not working anymore after the update to version 3.0.0.
.k-filter-menu-container .k-dropdown,
.k-filter-menu-container .k-state-empty:nth-of-type(2n),
.k-filter-menu-container .k-textbox:nth-of-type(2n),
.k-filter-menu-container .k-datepicker:nth-of-type(2n+1),
.k-filter-menu-container .k-numerictextbox:nth-of-type(2n) {
display: none;
}
.k-filter-menu-container .k-dropdown:first-of-type {
display: block;
}
We have changed it to:
.k-filter-menu-container .k-dropdownlist,.k-filter-menu-container .k-state-empty:nth-of-type(2n),
.k-filter-menu-container .k-textbox:nth-of-type(2n),
.k-filter-menu-container .k-datepicker:nth-of-type(2n+1),
.k-filter-menu-container .k-numerictextbox:nth-of-type(2n) {
display: none;
}
.k-filter-menu-container .k-dropdownlist:first-of-type {
display: inline-flex;
}
But that shows the wrong dropdownlist.
How can we fix that?