diff --git a/knowledge-base/treeview-validate-drop-target.md b/knowledge-base/treeview-validate-drop-target.md
new file mode 100644
index 0000000000..768709a338
--- /dev/null
+++ b/knowledge-base/treeview-validate-drop-target.md
@@ -0,0 +1,196 @@
+---
+title: Validate Drop Target in TreeView
+description: How to validate drop target in Telerik TreeView for Blazor and prevent drop for invalid target.
+type: how-to
+page_title: How to Validate Drop Target in TreeView
+slug: treeview-kb-validate-drop-target
+tags: treeview, item, node, drop target, draggable, validate, invalid, prevent drop
+ticketid: 1592132
+res_type: kb
+---
+
+## Environment
+
+
+
+
+
Product
+
TreeView for Blazor
+
+
+
+
+## Description
+
+I have a draggable TreeView and I want to prevent the user from dropping items in specific locations or folders. How can I achieve this?
+
+How to validate the drop target, so I don't allow the user to drop the file if the target is invalid?
+
+## Solution
+
+To validate the drop target and prevent the user from dropping on an invalid target, follow these steps:
+
+1. Handle the [`OnDrag`]({%slug treeview-events%}#drag-events) event of the TreeView to validate the target based on your requirements. In the example below, we are checking it the user tries to drop an item from the **Documents** folder into the **Pictures** folder - the **Pictures** folder is not a valid target in this case.
+1. Raise a flag if the target is not valid.
+1. Change the icon in the drag clue to indicate the target is not valid. Once the [Drag Clue Template](https://feedback.telerik.com/blazor/1501043-drag-clue-template) is available, you may use it to change the rendering as needed. At the time of writing, changing the icon is only possible with CSS as per the example below.
+1. Include a conditional logic in your [`OnDrop`]({%slug treeview-events%}#drag-events) handler to not perform any action if the target is invalid.
+1. Use CSS to hide the build-in drop hint for the invalid target.
+
+
+>caption Validate TreeView drop target and prevent drop for invalid target
+
+````CSHTML
+This TreeView does not allow the user to drop items from the Documents folder into the Pictures folder.
+
+
+
+
+@if (IsPointerOverInvalidTarget)
+{
+
+}
+
+@code {
+ private TreeItem DestinationItem { get; set; }
+ private List Data { get; set; } = new List();
+ private IEnumerable