Skip to content

Commit 875d7d0

Browse files
committed
chore(menu): initial commit of kb article regarding not closing menu items on hover
1 parent 0435820 commit 875d7d0

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
122 KB
Loading
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: Menu items dont close when hovered over
3+
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+
![menu items do not close on hover](images/menu-items-dont-close.gif)
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

Comments
 (0)