diff --git a/knowledge-base/grid-cannot-drag-to-empty-grid.md b/knowledge-base/grid-cannot-drag-to-empty-grid.md
new file mode 100644
index 0000000000..5dc58e2099
--- /dev/null
+++ b/knowledge-base/grid-cannot-drag-to-empty-grid.md
@@ -0,0 +1,156 @@
+---
+title: Cannot Drag Rows to Empty Grid
+description: How to drag Grid items to an empty Grid and improve the user experience.
+type: troubleshooting
+page_title: Drag and Drop Items to Empty Grid Doesn't Work
+slug: grid-cannot-drag-to-empty-grid
+position:
+tags: grid, drag, drop, empty
+ticketid: 1538763
+res_type: kb
+---
+
+## Environment
+
+
+
+ | Product |
+ Grid for Blazor |
+
+
+
+
+
+## Description
+
+I am not able to drag and drop rows to an empty Grid. When I try to drag an item to an empty Grid, I just get the "not allowed" tooltip and cannot drop.
+
+## Cause\Possible Cause(s)
+
+Row drag and drop relies on a `DestinationItem` in the destination Grid. The Grid expects the user to drop over/above/below a specific table row, and always within the table boundaries. When the destination Grid has no data, there is only one row - the "no data" row or the `NoDataTemplate`. In this case, the user can only drop over this row.
+
+## Solution
+
+There are 3 ways to improve the user experience and make dropping easier:
+
+* Remove the destination Grid `Height`, so that there is no empty area below the "no data" row.
+* Apply a height CSS style to the default `NoDataTemplate` to expand it.
+* Use a custom `NoDataTemplate` that is high enough to fill the empty Grid data area.
+
+The example below demonstrates the first two options:
+
+````CSHTML
+
+
Source Grid
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Empty destination Grid with no Height
+
+
+
+
+
+
+
+
+
+
+
Empty destination Grid with large Height and small NoDataTemplate
+
+
+
+
+
+
+
+
+
+
+
Empty destination Grid with larger NoDataTemplate
+
+
+
+
+
+
+
+
+
+
+
+
+
+@code {
+ TelerikGrid SourceGrid { get; set; }
+
+ private void OnGrid1RowDropHandler(GridRowDropEventArgs args)
+ {
+ MyGridData.Remove(args.Item);
+ InsertItem(args);
+ }
+
+ private void InsertItem(GridRowDropEventArgs args)
+ {
+ var destinationData = MyEmptyData;
+
+ var destinationIndex = 0;
+
+ if (args.DestinationItem != null)
+ {
+ destinationIndex = destinationData.IndexOf(args.DestinationItem);
+ if (args.DropPosition == GridRowDropPosition.After)
+ {
+ destinationIndex += 1;
+ }
+ }
+
+ destinationData.InsertRange(destinationIndex, args.Items);
+ }
+
+ public List MyGridData = Enumerable.Range(1, 3).Select(x => new SampleData
+ {
+ Id = x,
+ Name = "Name " + x
+ }).ToList();
+
+ public List MyEmptyData = new();
+
+ public class SampleData
+ {
+ public int Id { get; set; }
+ public string Name { get; set; }
+ }
+}
+````
\ No newline at end of file