Add and remove list items from listview in React Listview component
31 Oct 20248 minutes to read
You can add or remove list items from the ListView component using the addItem
and removeItem
methods. Refer to the following steps to add or remove a list item.
-
Render the ListView with data source, and use the template property to append the delete icon for each list item. Also, bind the click event for the delete icon using the
actionComplete handler. -
Render the Add Item button, and bind the click event. On the click event handler, pass data with random id to the
addItem
method to add a new list item on clicking the Add Item button. -
Bind the click handler to the delete icon created in step 1. Within the click event, remove the list item by passing the
delete icon list item toremoveItem
method.
import * as React from 'react';
import * as ReactDOM from "react-dom";
import { ListViewComponent } from '@syncfusion/ej2-react-lists';
import { ButtonComponent } from '@syncfusion/ej2-react-buttons';
import './index.css';
function App() {
let listviewInstance = null;
function listTemplate(data) {
return (<div className="text-content">
{data.text}
<span className="delete-icon" onClick={deleteItem.bind(this)}/>
</div>);
}
// define the array of Json
let dataSource = [
{ text: "Hennessey Venom", id: "1", icon: "delete-icon" },
{ text: "Bugatti Chiron", id: "2", icon: "delete-icon" },
{ text: "Bugatti Veyron Super Sport", id: "3", icon: "delete-icon" },
{ text: "Aston Martin One- 77", id: "4", icon: "delete-icon" },
{ text: "Jaguar XJ220", id: "list-5", icon: "delete-icon" },
{ text: "McLaren P1", id: "6", icon: "delete-icon" }
];
let fields = { text: "text", iconCss: "icon" };
function addItem() {
let data = {
text: "Koenigsegg - " + (Math.random() * 1000).toFixed(0),
id: (Math.random() * 1000).toFixed(0).toString(),
icon: "delete-icon"
};
listviewInstance.addItem([data]);
}
function deleteItem(args) {
args.stopPropagation();
let liItem = args.target.closest('li');
listviewInstance.removeItem(liItem);
}
return (<div>
<ListViewComponent id="sample-list" dataSource={dataSource} fields={fields} template={listTemplate.bind(this)} ref={listview => {
listviewInstance = listview;
}}/>
<ButtonComponent id="btn" onClick={addItem.bind(this)}>
Add Item
</ButtonComponent>
</div>);
}
export default App;
ReactDOM.render(<App />, document.getElementById('element'));
import * as React from 'react';
import * as ReactDOM from "react-dom";
import { ListViewComponent } from '@syncfusion/ej2-react-lists';
import { ButtonComponent } from '@syncfusion/ej2-react-buttons';
import './index.css';
function App() {
let listviewInstance: ListViewComponent = null as any;
function listTemplate(data: any): JSX.Element {
return (
<div className="text-content">
{data.text}
<span className="delete-icon" onClick={deleteItem.bind(this)} />
</div>
);
}
// define the array of Json
let dataSource: any = [
{ text: "Hennessey Venom", id: "1", icon: "delete-icon" },
{ text: "Bugatti Chiron", id: "2", icon: "delete-icon" },
{ text: "Bugatti Veyron Super Sport", id: "3", icon: "delete-icon" },
{ text: "Aston Martin One- 77", id: "4", icon: "delete-icon" },
{ text: "Jaguar XJ220", id: "list-5", icon: "delete-icon" },
{ text: "McLaren P1", id: "6", icon: "delete-icon" }
];
let fields: Object = { text: "text", iconCss: "icon" };
function addItem() {
let data = {
text: "Koenigsegg - " + (Math.random() * 1000).toFixed(0),
id: (Math.random() * 1000).toFixed(0).toString(),
icon: "delete-icon"
};
listviewInstance.addItem([data]);
}
function deleteItem(args: any) {
args.stopPropagation();
let liItem = args.target.closest('li');
listviewInstance.removeItem(liItem);
}
return (
<div>
<ListViewComponent
id="sample-list"
dataSource={dataSource}
fields={fields}
template={listTemplate.bind(this) as any}
ref={listview => {
listviewInstance = listview as any;
}}
/>
<ButtonComponent id="btn" onClick={addItem.bind(this)}>
Add Item
</ButtonComponent>
</div>
);
}
export default App;
ReactDOM.render(<App />, document.getElementById('element'));