This is a migrated thread and some comments may be shown as answers.

Focus on Filter Text Box

4 Answers 609 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Matt
Top achievements
Rank 1
Matt asked on 22 Jul 2020, 12:36 PM

Is there a way to Focus on a columns filter text box after selecting a filter option like "Contains" or "Starts with"?

The focus is on one of the records but should be on the filter text line so the user can enter filter criteria.

 

 

 

4 Answers, 1 is accepted

Sort by
0
Stefan
Telerik team
answered on 23 Jul 2020, 05:25 AM

Hello, Matt,

Currently, this can be done by using a custom filter cell. Then inside that custom cell, we can render custom operators dropdown and listen on its onChange event, and based on the value to focus the input element.

https://www.telerik.com/kendo-react-ui/components/grid/filtering/#toc-custom-filter-cells

Another option can be to listen on the onFilterChange event which will be fired when an operator is changed. Then loop over the filters to see if an operator is changed and for which field. Then programmatically focus the filter input.

The main reason why we are not doing this automatically is that there are many use cases in on some of them automatically focusing an input may not be the required one. This is why we have the option for custom cells to allow the developer to fully customize the Grid to cover all business requirements.

Regards,
Stefan
Progress Telerik

0
Matt
Top achievements
Rank 1
answered on 27 Jul 2020, 06:57 PM

Thanks for the quick response.

If what I'm seeing in the example is true we would have to render all out of the box operators just to enable focus on the filtercell text input element. The second option looks to be a better choice of us. We are able to distinguish the exact column however it looks like the element for each filtercell text input is the same (class="k-textbox"). How can we distinguish with exact one to focus on?

0
Stefan
Telerik team
answered on 28 Jul 2020, 06:46 AM

Hello, Matt,

Yes, indeed the first option will require re-creating all out of the box filtering only for that change, this is an option if the Grid is already using many custom filters.

As for distinguish the exact input, if we already know the column, then we can know the index of the column and based on that index to select the correct input. We are rendering the filter row with class name k-filter-row and we can select all the elements inside that row. Then based on the column index we will select the correct `th` element and then focus the input inside that filter cell.

This is an example showcasing how to focus a specific input if we know the column:

https://stackblitz.com/edit/react-eeko1s?file=app/main.jsx

Regards,
Stefan
Progress Telerik

0
Matt
Top achievements
Rank 1
answered on 28 Jul 2020, 03:32 PM
Thanks Stefan appreciate the help!
Tags
General Discussions
Asked by
Matt
Top achievements
Rank 1
Answers by
Stefan
Telerik team
Matt
Top achievements
Rank 1
Share this question
or