You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Menu items dont close when hovered over
4
+
type: troubleshooting
5
+
page_title: Menu items dont close when hovered over
6
+
slug: kb-menu-items-dont-close
7
+
position:
8
+
tags:
9
+
ticketid: 1479006
10
+
res_type: kb
11
+
---
12
+
13
+
## Description
14
+
15
+
I have setup a [Menu]({%slug components/menu/overview%}) in my Telerik Blazor Application. When the component is hosted and the user hovers quickly over the menu items they would not close.
16
+
17
+
>caption The menu items do not close when the user hovers quickly over them
18
+
19
+

20
+
21
+
## Cause\Possible Cause(s)
22
+
23
+
This behavior is mainly observed when the application uses the `Blazor Server` hosting model. It occurs mostly due to high latency to the server which hosts the project because every user interaction involves a network hop (passing one data package from one network segment to the next).
24
+
25
+
If the application is deployed to a cloud hosting and the WebSockets are not enabled the performance of will be hindered.
26
+
27
+
## Solution
28
+
29
+
A solution to this would be using the `Blazor WebAssembly` hosting model. That would strip the latency since the content of the application is executed on the device of the user.
0 commit comments