From c9956f456d18877d5e33fabbf75a1367c8626113 Mon Sep 17 00:00:00 2001 From: Dimo Dimov <961014+dimodi@users.noreply.github.com> Date: Mon, 30 Jun 2025 11:56:25 +0300 Subject: [PATCH 1/2] kb(ComboBox): Word polishing --- knowledge-base/combobox-auto-select-on-blur.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/knowledge-base/combobox-auto-select-on-blur.md b/knowledge-base/combobox-auto-select-on-blur.md index f8e2d7e3a0..295a1e161b 100644 --- a/knowledge-base/combobox-auto-select-on-blur.md +++ b/knowledge-base/combobox-auto-select-on-blur.md @@ -1,8 +1,8 @@ --- -title: How to Automatically Select Preselected Item on Blur -description: Learn how to configure the Telerik ComboBox for Blazor to automatically select the first matching item when the input loses focus. +title: Select Focused Item on Tab +description: Learn how to configure the Telerik ComboBox for Blazor to automatically select the first matching item when the user tabs and the component loses focus. type: how-to -page_title: How to Automatically Select Preselected Item on Blur +page_title: How to Automatically Select the Focused Dropdown Item on Tab slug: combobox-kb-autoselect-on-blur tags: telerik, blazor, combobox, blur, auto-select res_type: kb @@ -29,6 +29,7 @@ The article asnwers to the following question: * How to set the ComboBox value when the user leaves the input field? ## Solution + To automatically select the first matching item in the ComboBox when the input loses focus, use a combination of the ComboBox [`OnRead` event](slug:components/combobox/events#onread) and JavaScript interop. The provided example demonstrates how to: 1. Use the `OnRead` event to filter data and store the first matching item. @@ -182,4 +183,4 @@ To automatically select the first matching item in the ComboBox when the input l ```` ## See Also -- [ComboBox Events](slug:components/combobox/events) +* [ComboBox Events](slug:components/combobox/events) From 1fae291a57a5c556cef8940dc62791c7a2c33855 Mon Sep 17 00:00:00 2001 From: Dimo Dimov <961014+dimodi@users.noreply.github.com> Date: Mon, 30 Jun 2025 11:57:24 +0300 Subject: [PATCH 2/2] Update knowledge-base/combobox-auto-select-on-blur.md --- knowledge-base/combobox-auto-select-on-blur.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/knowledge-base/combobox-auto-select-on-blur.md b/knowledge-base/combobox-auto-select-on-blur.md index 295a1e161b..687824178b 100644 --- a/knowledge-base/combobox-auto-select-on-blur.md +++ b/knowledge-base/combobox-auto-select-on-blur.md @@ -1,5 +1,5 @@ --- -title: Select Focused Item on Tab +title: Select Focused Dropdown Item on Tab description: Learn how to configure the Telerik ComboBox for Blazor to automatically select the first matching item when the user tabs and the component loses focus. type: how-to page_title: How to Automatically Select the Focused Dropdown Item on Tab