ComboBox with AllowCustom is losing keystrokes randomly at normal typing speed

1 Answer 22 Views
ComboBox MultiColumnComboBox
Jonathan
Top achievements
Rank 1
Jonathan asked on 04 Jun 2024, 09:43 PM | edited on 07 Jun 2024, 06:58 PM

This ComboBox, with filtering and custom values enabled, glitches when typing in the box. At a normal typing speed, I'm seeing that about 10% of keystrokes are skipped, or appear briefly and then disappear.

<TelerikComboBox Data="@_data"
                 @bind-Value="@_value"
                 AllowCustom="true"
                 Filterable="true"
                 FilterOperator="@StringFilterOperator.Contains"
                 Enabled="@Enabled"></TelerikComboBox>
...
List<string> _data = new() { "Lorem", "ipsum", "dolor", "sit", "amet", "consectetur", "adipiscing", "elit" };
string _value { get; set; }

 

Dropped letters are slightly less frequent with DebounceDelay="0" ; it's worse with more items in the list. It seems to occur if you type more than 3-4 letters per second.

Also, clicking the cursor in the middle of the text and typing can cause the cursor to jump to the end of the input and jumble your letters around.

 

1 Answer, 1 is accepted

Sort by
0
Tsvetomir
Telerik team
answered on 07 Jun 2024, 06:05 AM

Hello Jonathan,

Thank you for the detailed explanation of the behavior you are encountering.

For the same configuration of the ComboBox, there is an already reported bug in our feedback portal: Entering text quickly in the input field leads to the text blinking and becoming partially cleared. Currently, its status is Planned.

You can also subscribe to the public item to receive email notifications for further status updates. Please excuse us for any trouble.

Regards,
Tsvetomir
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources!
Jonathan
Top achievements
Rank 1
commented on 07 Jun 2024, 06:56 PM

Thank you, I did didn't find a ticket searching "TelerikComboBox". This does look like the same problem as described in the MultiColumnComboBox ticket.
Tags
ComboBox MultiColumnComboBox
Asked by
Jonathan
Top achievements
Rank 1
Answers by
Tsvetomir
Telerik team
Share this question
or