The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
When i select more one item on treeview and then i drag and drop to another treeview component, İ just dedect one item by nodeDropped listener. But how can i dedect all item.
SMShalini Maragathavel Syncfusion Team November 16, 2021 12:33 PM UTC
Hi Yahya,
Greetings from Syncfusion support.
We checked your query and would like to let you know that the drag and drop events work based on mouse pointer. You can get the selected node using selectedNodes property and the selected node details using getNode method in nodeDragStart event of TreeView as demonstrated in the below code snippet,
export class Dragdrop extends SampleBase {
nodeDragStart(args) {
var selectedNodes = this.selectedNodes; //to get the selected nodes id
for (var i = 0; i < selectedNodes.length; i++) {
console.log(this.getNode(selectedNodes[i])); //to get the selected node details