diff --git a/knowledge-base/window-focus-button-textbox-on-open.md b/knowledge-base/window-focus-button-textbox-on-open.md
index 300d3fdba5..19a4d99540 100644
--- a/knowledge-base/window-focus-button-textbox-on-open.md
+++ b/knowledge-base/window-focus-button-textbox-on-open.md
@@ -6,7 +6,7 @@ page_title: How to Focus Button or TextBox on Window Open
slug: window-kb-focus-button-textbox-on-open
position:
tags: telerik, blazor, window, dialog
-ticketid: 1486212, 1513605, 1610413, 1659021
+ticketid: 1486212, 1513605, 1610413, 1659021, 1685761
res_type: kb
---
@@ -30,11 +30,98 @@ This KB article answers the following questions:
* How to focus a button or a textbox inside a Window when the Window is made visible?
* How to focus a component after the Window opens? The JavaScript call is made before the Window actually shows, so the focusable element is `null`.
* How do you set focus on an input element in a Window, so that the user doesn't have to use their mouse?
+* How to open (expand) a DropDownList automatically on Window open?
## Solution
-To focus any element or component in the [Telerik UI Window for Blazor](slug:dialog-overview), follow the steps below. They are also applicable for the [Dialog component](slug:dialog-overview).
+There are two ways to focus any element or component in the [Telerik UI Window for Blazor](slug:window-overview). They are also applicable for the [Dialog component](slug:dialog-overview).
+
+* [Add a delay after changing the Window's `Visible` parameter value](#add-delay-after-changing-the-visible-parameter-value)
+* [Use a boolean flag in `OnAfterRenderAsync`](#use-boolean-flag-in-onafterrenderasync)
+
+### Add Delay after Changing the Visible Parameter Value
+
+1. To focus a Telerik UI for Blazor component, [set the `@ref` attribute to obtain the component's reference](slug:components/textbox/overview#textbox-reference-and-methods).
+1. Set the Window `Visible` parameter to `true` programmatically in some event handler.
+1. Use a small `Task.Delay()` to trigger an immediate UI refresh in the same event handler. The delay allows the app to wait for the Window to display and gain focus. Without a delay, the Window and the focusable component will not exist yet.
+1. Focus the desired button, textbox, or input component. If it's a Telerik UI for Blazor component, use the [`FocusAsync()` method](slug:inputs-kb-focus).
+
+>caption Focus a component on Dialog or Window open
+
+````RAZOR
+ This Button is now focused: StringValue: @StringValue
This Button is now focused:
StringValue: @StringValue