diff --git a/knowledge-base/grid-copy-text-clipboard.md b/knowledge-base/grid-copy-text-clipboard.md
new file mode 100644
index 000000000..3d6d8c31d
--- /dev/null
+++ b/knowledge-base/grid-copy-text-clipboard.md
@@ -0,0 +1,140 @@
+---
+title: Copy Text from Grid Row to Clipboard
+description: Learn how to add a right-click context menu option to copy text from a Grid to the clipboard and paste it into the Editor.
+type: how-to
+page_title: How to Copy Text from Grid to Clipboard and Paste into UI for Blazor Editor
+meta_title: How to Copy Text from Grid to Clipboard and Paste into UI for Blazor Editor
+slug: grid-kb-copy-text-clipboard
+tags: blazor, clipboard, context-menu, copy-text, grid
+res_type: kb
+ticketid: 1695036
+---
+
+## Environment
+
+
+
+
+ | Product |
+ Grid for Blazor |
+
+
+
+
+## Description
+
+I want to add a right-click context menu to a Grid, which allows copying text from the Grid to the clipboard. The copied text can then be pasted into an Editor or anywhere else.
+
+## Solution
+
+To achieve this, implement a context menu for the Grid and include a "Copy to Clipboard" option. Follow these steps:
+
+1. Define the context menu and its items.
+2. Handle the right-click event to show the context menu.
+3. Implement the logic to copy the selected row's text to the clipboard by using the [navigator clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/clipboard).
+
+````Razor
+@using System.Collections.Generic
+@using System.Collections.ObjectModel
+@inject IJSRuntime JS
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code {
+ private string TheEditorValue { get; set; }
+ private ObservableCollection GridData { get; set; }
+ private List