I have a Kendo React Grid with a GridColumnMenuCheckboxFilter. Some of the values can get out of hand long, which push the filter dialog width out too far. Is it possible to set a width limit?
2 Answers, 1 is accepted
0
Accepted
Konstantin Dikov
Telerik team
answered on 19 Oct 2023, 05:25 AM
Hello Dan,
Although that there is no direct way of setting the width of the filter container in the column menu, you can use the following CSS to set explicit width:
<style>.k-filter-menu-container {
width: 300px;
}
Following is a simple example with the above override:
Is it still possible to set the width of the GridColumnMenuCheckboxFilter?
Kind regards,
David
0
Yanko
Telerik team
answered on 18 Feb 2025, 04:29 PM
Hello, Dan,
The structure of the column menu has changed and also a new min-width rule was added to the styles coming from the theme. You can use a different selector to achieve the same behaviour as before disabling the min-width rule and applying the desired width: