diff --git a/knowledge-base/grid-loader-during-contextmenu-actions.md b/knowledge-base/grid-loader-during-contextmenu-actions.md
new file mode 100644
index 0000000000..d1f7d393b0
--- /dev/null
+++ b/knowledge-base/grid-loader-during-contextmenu-actions.md
@@ -0,0 +1,231 @@
+---
+title: Display Loader During ContextMenu Actions in Grid
+description: Learn how to show a loading indicator while performing actions from a ContextMenu in a Telerik Grid for Blazor.
+type: how-to
+page_title: How to Display a Loader in TelerikGrid for Blazor During ContextMenu Actions
+slug: grid-kb-loader-during-contextmenu-actions
+tags: contextmenu, grid, loader, loading, loadercontainer
+res_type: kb
+ticketid: 1675767
+---
+
+## Environment
+
+
+
+
+ | Product |
+ Grid for Blazor |
+ Context Menu for Blazor |
+
+
+
+
+## Description
+
+When the TelerikGrid is used with ContextMenu for various row actions, there is a noticeable delay between selecting an action and its execution. This delay could be due to data retrieval or data manipulation. The goal is to display a loading notice to the user while the data loads and the result is not yet visible.
+
+This knowledge base article also answers the following questions:
+- How to use the TelerikLoaderContainer during data fetch operations in Blazor?
+- How to show a loading indicator while waiting for an action?
+- How to improve user experience during delayed operations in TelerikGrid with ContextMenu in Blazor?
+
+## Solution
+
+To display a spinner during delayed operations initiated from a ContextMenu in a TelerikGrid, utilize the [TelerikLoaderContainer](slug://loadercontainer-overview) component. Display the TelerikLoaderContainer while the data is being loaded or an action is being performed, and hide it once the operation is complete.
+
+````RAZOR
+@using System.Collections.ObjectModel
+
+
+
+
+
+
+
+
+ Add Employee
+
+
+
+
+
+ Save
+ Cancel
+
+
+
+
+@if (SelectedItems.Any())
+{
+
+ @foreach (var item in SelectedItems)
+ {
+ - @item.Name
+ }
+
+}
+
+@code {
+ private ObservableCollection GridData { get; set; }
+ private List