Hi,
The jQuery Grid Checkbox Filter has a search box which can be used to find any entries containing the search string entered (see this demo and type in 'syrup' for example, one result is shown): https://demos.telerik.com/kendo-ui/grid/filter-multi-checkboxes
The GridColumnMenuCheckboxFilter also has a search box, however this appears to only return entries matching or starting with the search string entered (see this demo and type in 'syrup', no results are shown): https://www.telerik.com/kendo-react-ui/components/grid/filtering/#toc-column-menu-filter
Is there any way to change the functionality of the GridColumnMenuCheckboxFilter to match the jQuery implementation?
Kind regards,
David

Hello all,
In my Kendo Grid I have one column that contains a integer's array, the data for the field "groups" looks like this [1, 2, 3, 4]. The column has a custom cell and filter that help displaying the data in a more helpful way, see image attached.
<GridColumn
field="groups"
title="Groups"
cell={MyPublisherGroupsColumn}
filterCell={MyPublisherGroupFilterCell}
/>
I'm trying to apply a filter for that column with a custom "filterCell", now I have done that multiple times using no complex data types like strings, using the example provided in your documentation(https://www.telerik.com/kendo-react-ui/components/grid/filtering/#toc-custom-filter-cells) but it does not work for an array.
It is possible to implement this filter to work with more complex data types, like an array of numbers or even an array of objects, maybe implementing a custom operator? If possible could you point me in the right direction?
Thanks
Hi.
I'm trying to use ganttTextfiler.
but When I try filtering serveral times, strange thing happens.
some of the row, the task-bars are misplaced after filtering action.
I attached image file that explain this issue.
I think after filtering action, the css ( top, left positions of elements ) that should be applied is not working.
check my application please.
https://stackblitz.com/edit/react-6rfhx5?file=app%2Fmain.jsx

Hi,
We are using a KendoReact Grid with pageable and sortable options enabled, and columnMenus for specific columns requiring filtering. We are using the columnMenu approach because we are using the GridColumnMenuCheckboxFilter as recommended here: https://www.telerik.com/kendo-react-ui/components/grid/filtering/
I have some questions regarding keyboard navigation:
Kind regards,
David

Hi,
I am using a datepicker in a form. The form is used for filtering and has a reset button. If I programatically set the value of the datepicker to another value, the value displayed by the datepicker is updated. If I set the datepicker value to undefined (on reset), the underlying value is updated but the value displayed by the datepicker doesn't change. Is this a bug or is there a better way to clear the selected datepicker value?
Kind regards,
David



Hi. I'm implementing a Grid with grouping and virtual scrolling. It i see it have some defects when I do scrolling. I created an example to demonstrate that and recorded a small video. Please take a look and tell me if I do anything wrong.
https://stackblitz.com/edit/react-tvh32r?file=app/main.jsx
https://take.ms/r6Cia
Thanks


Hi all
I am trying to select all contents of the NumericTextBox when the control gets focus.
I have tried this in the regular way with an onfocus event and in the event event.target.select()
But this does not seem to actually highlight and select the contents. I have googled around and others seem to have this issue but the only examples I can find are for the jquery tools.
