When the Chinese input method is used, a Chinese word is generated after the space key is pressed. For example, if you enter j, i, a, n, c, h, a, and then press space, you will get "检查". I want to filter "检查" as a filter word. What should I do? Thanks.
1 Answer, 1 is accepted
0
Accepted
Dinko | Tech Support Engineer
Telerik team
answered on 12 Jul 2023, 06:51 AM
Hi lou jason,
To filter the control you can use its filter functionality. You can read more about it in the RadDropDownList Filtering article. In your case, I am not sure how to catch the moment when the user presses Space to autocomplete the word. One approach which comes to my mind is to subscribe to the TextChanged event of the TextBox inside the control. If the text matches a specific word, filter the control. Here is what I have in mind.