Having trouble getting help?
Contact Support
Contact Support
Drag and drop list items in React ListView component
23 Jan 202510 minutes to read
The ListView component doesn’t have built-in drag and drop support. However, we can achieve this functionality using the TreeView
component with ListView appearance.
Drag and Drop in the TreeView component can be enabled by setting allowDragAndDrop
to true
.
<TreeViewComponent id='treeview'
dataSource={data}
allowDragAndDrop = {true}
fields= {field} >
</TreeViewComponent>
The TreeView component is used to represent hierarchical data in a tree-like structure. By default, list items in TreeView can be dropped as children of target elements. We can prevent this behavior by canceling the nodeDragStop
and nodeDragging
events.
function onDragStop(args: DragAndDropEventArgs) {
//Block the Child Drop operation in TreeView
let draggingItem: HTMLCollection = document.getElementsByClassName("e-drop-in");
if (draggingItem.length == 1) {
draggingItem[0].classList.add('e-no-drop');
args.cancel = true;
}
}
return (
<TreeViewComponent id='treeview'
dataSource={data}
allowDragAndDrop = {true}
nodeDragging = {onDragStop.bind(this)}
nodeDragStop = {onDragStop.bind(this)}
fields= {field} >
</TreeViewComponent>
)
function onDragStop(args) {
//Block the Child Drop operation in TreeView
let draggingItem = document.getElementsByClassName("e-drop-in");
if (draggingItem.length == 1) {
draggingItem[0].classList.add('e-no-drop');
args.cancel = true;
}
}
return (<TreeViewComponent id='treeview' dataSource={data} allowDragAndDrop={true} nodeDragging={onDragStop.bind(this)} nodeDragStop={onDragStop.bind(this)} fields={field}>
</TreeViewComponent>);
In the below sample, we have rendered draggable list items.
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { TreeViewComponent } from '@syncfusion/ej2-react-navigations';
import './index.css';
function App() {
//Define an array of JSON data
let data = [
{ text: "Hennessey Venom", id: "list-01" },
{ text: "Bugatti Chiron", id: "list-02" },
{ text: "Bugatti Veyron Super Sport", id: "list-03" },
{ text: "SSC Ultimate Aero", id: "list-04" },
{ text: "Koenigsegg CCR", id: "list-05" },
{ text: "McLaren F1", id: "list-06" },
{ text: "Aston Martin One- 77", id: "list-07" },
{ text: "Jaguar XJ220", id: "list-08" },
{ text: "McLaren P1", id: "list-09" },
{ text: "Ferrari LaFerrari", id: "list-10" }
];
let field = { dataSource: data, id: "id", text: "text" };
function onDragStop(args) {
//Block the Child Drop operation in TreeView
let draggingItem = document.getElementsByClassName("e-drop-in");
if (draggingItem.length == 1) {
draggingItem[0].classList.add("e-no-drop");
args.cancel = true;
}
}
return (<TreeViewComponent id="treeview" allowDragAndDrop={true} nodeDragging={onDragStop.bind(this)} nodeDragStop={onDragStop.bind(this)} fields={field} />);
}
export default App;
ReactDOM.render(<App />, document.getElementById('element'));
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { TreeViewComponent } from '@syncfusion/ej2-react-navigations';
import { DragAndDropEventArgs } from '@syncfusion/ej2-navigations';
function App() {
//Define an array of JSON data
let data: any[] = [
{ text: "Hennessey Venom", id: "list-01" },
{ text: "Bugatti Chiron", id: "list-02" },
{ text: "Bugatti Veyron Super Sport", id: "list-03" },
{ text: "SSC Ultimate Aero", id: "list-04" },
{ text: "Koenigsegg CCR", id: "list-05" },
{ text: "McLaren F1", id: "list-06" },
{ text: "Aston Martin One- 77", id: "list-07" },
{ text: "Jaguar XJ220", id: "list-08" },
{ text: "McLaren P1", id: "list-09" },
{ text: "Ferrari LaFerrari", id: "list-10" }
];
let field: object = { dataSource: data, id: "id", text: "text" };
function onDragStop(args: DragAndDropEventArgs) {
//Block the Child Drop operation in TreeView
let draggingItem: HTMLCollection = document.getElementsByClassName("e-drop-in");
if (draggingItem.length == 1) {
draggingItem[0].classList.add("e-no-drop");
args.cancel = true;
}
}
return (
<TreeViewComponent
id="treeview"
allowDragAndDrop={true}
nodeDragging={onDragStop.bind(this) as any}
nodeDragStop={onDragStop.bind(this) as any}
fields={field}
/>
);
}
export default App;
ReactDOM.render(<App />, document.getElementById('element'));
#loader {
color: #008cff;
height: 40px;
width: 30%;
position: absolute;
font-family: 'Helvetica Neue', 'calibiri';
font-size: 14px;
top: 45%;
left: 45%;
}
#element {
display: block;
max-width: 280px;
margin: auto;
border: 1px solid #dddddd;
border-radius: 3px;
}
#treeview.e-treeview .e-ul,
#treeview.e-treeview .e-text-content {
padding: 0;
}
#treeview.e-treeview .e-list-item {
padding: 0 16px;
}
#treeview.e-treeview .e-fullrow {
height: 36px;
}
#treeview.e-treeview .e-list-text {
line-height: 34px;
}
#treeview.e-treeview .e-list-item:last-child {
margin-bottom: 9px;
}
#treeview.e-treeview .e-list-item:first-child {
margin-top: 9px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Syncfusion React ListView</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Essential JS 2 for React Components" />
<meta name="author" content="Syncfusion" />
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-base/styles/material.css" rel="stylesheet" />
<link href="https://cdn.syncfusion.com/ej2/29.1.33/ej2-react-navigations/styles/material.css" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='element'>
<div id='loader'>Loading....</div>
</div>
</body>
</html>