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?
1 Answer, 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: