Customize listview as grid layout in EJ2 JavaScript Listview control
8 Aug 202314 minutes to read
In Listview, list items can be rendered in grid layout with following data manipulations.
-
Add Item
-
Remove Item
-
Sort Items
-
Filter Items
Grid Layout
In this section, we will discuss about rendering of list items in grid layout.
-
Initialize and render ListView with dataSource which will render list items in list layout.
-
Now, add the below CSS to list item. This will make list items to render in grid layout
#default-list .e-list-item {
height: 100px;
width: 100px;
float: left;
}
In the below sample, we have rendered List items in grid layout.
//define the array of string
var data = [1, 2, 3, 4, 5, 6, 7, 8, 9];
//Initialize ListView component
var listviewInstance = new ej.lists.ListView({
//set the data to datasource property
dataSource: data,
//set the template for list items
template: '<img id="listImage" src="./apple.png" alt="apple" />'
});
//Render initialized ListView
listviewInstance.appendTo("#element");
<!DOCTYPE html><html lang="en"><head>
<title>Essential JS 2 for 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 ListView UI Control">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/23.1.36/ej2-base/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/23.1.36/ej2-lists/styles/material.css" rel="stylesheet">
<script src="https://cdn.syncfusion.com/ej2/23.1.36/dist/ej2.min.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="element"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
Data manipulation
In this section, we will discuss about ListView data manipulations.
Add Item
We can add list item using addItem
API. This will accept array of data as argument.
listViewInstance.addItem([{text: 'Apricot', id: '32'}]);
In the below sample, you can add new fruit item by clicking add button which will open dialog box with fruit name and image URL text box. After entering the item details, click the add button. This will add your new fruit item.
Remove item
We can remove list item using removeItem
API. This will accept fields with id
or list item element as argument.
listViewInstance.removeItem({id: '32'});
In the below sample, you can remove fruit by hovering the fruit item which will show delete button and click that delete button to delete that fruit from your list.
Sort Items
Listview can be sorted either in Ascending or Descending order. To enable sorting in your ListView, set sortOrder
as Ascending
or Descending
.
let listViewInstance: ListView = new ListView({
sortOrder: 'Ascending';
})
We can also set sorting after control initialization.
listViewInstance.sortOrder = 'Ascending'
In the below sample, we have sorted fruits in Ascending
order. To sort it in descending, click on sort order icon and vice versa.
Filter Items
Listview data can be filtered with the help of dataManager
. After filtering the data, update ListView dataSource
with filtered data.
let value = document.getElementById("filter").value; //input text box value
let filteredData = new DataManager(listdata).executeLocal(
new Query().where("text", "startswith", value, true)
);
listViewInstance.dataSource = filteredData;
In the below sample, we can filter fruit items with the help of search text box. This will filter fruit items based on your input. Here we used startswith
of input text to filter data in DataManager.
var ascClass = 'e-sort-icon-ascending';
var desClass = 'e-sort-icon-descending';
//define the array of JSON
var fruitsdata = [
{ text: 'Date', id: '1', imgUrl: './dates.jpg' },
{ text: 'Fig', id: '2', imgUrl: './fig.jpg' },
{ text: 'Apple', id: '3', imgUrl: './apple.png' },
{ text: 'Apricot', id: '4', imgUrl: './apricot.jpg' },
{ text: 'Grape', id: '5', imgUrl: './grape.jpg' },
{ text: 'Strawberry', id: '6', imgUrl: './strawberry.jpg' },
{ text: 'Pineapple', id: '7', imgUrl: './pineapple.jpg' },
{ text: 'Melon', id: '8', imgUrl: './melon.jpg' },
{ text: 'Lemon', id: '9', imgUrl: './lemon.jpg' },
{ text: 'Cherry', id: '10', imgUrl: './cherry.jpg' },
];
//Initialize ListView component
var listViewInstance = new ej.lists.ListView({
//set the data to datasource property
dataSource: fruitsdata.slice(),
//set the template for list items
template: '<div class="fruits"><div class="first"><img id="listImage" src="${imgUrl}" alt="fruit" /><button class="delete e-control e-btn e-small e-round e-delete-btn e-primary e-icon-btn" data-ripple="true"><span class="e-btn-icon e-icons delete-icon"></span></button></div><div class="fruitName">${text}</div></div>',
//set sortOrder for list items
sortOrder: 'Ascending',
actionComplete: function() {
wireEvents();
}
});
//Render initialized ListView
listViewInstance.appendTo('#element');
var dialogObj = new ej.popups.Dialog({
header: 'Add fruit',
content: '<div id="listDialog"><div class="input_name"><label for="name">Fruit Name: </label><input id="name" class="e-input" type="text" placeholder="Enter fruit name"/></div><div><label for="imgurl">Fruit Image: </label><input id="imgurl" class="e-input" type="text" placeholder="Enter image url"/></div></div>',
showCloseIcon: true,
buttons: [{
click: dlgButtonClick,
buttonModel: { content: 'Add', isPrimary: true }
}],
width: '300px',
visible: false
});
dialogObj.appendTo('#dialog');
function addItem() {
document.getElementById("name").value = "";
document.getElementById("imgurl").value = "";
dialogObj.show()
}
function wireEvents() {
Array.prototype.forEach.call(document.getElementsByClassName('e-delete-btn'), function(ele) {
ele.addEventListener('click', onDeleteBtnClick);
});
document.getElementById("add").addEventListener('click', addItem);
document.getElementById("sort").addEventListener('click', sortItems);
document.getElementById("search").addEventListener("keyup", onKeyUp);
}
//Here we are removing list item
function onDeleteBtnClick(e) {
e.stopPropagation();
var li = ej.base.closest(e.currentTarget, '.e-list-item');
var data = listViewInstance.findItem(li);
listViewInstance.removeItem(data);
new ej.data.DataManager(fruitsdata).remove('id', { id: data["id"] })
}
//Here we are adding list item
function dlgButtonClick() {
var name = (document.getElementById("name")).value;
var url = (document.getElementById("imgurl")).value;
var id = Math.random() * 10000;
listViewInstance.addItem([{ text: name, id: id, imgUrl: url }]);
fruitsdata.push({ text: name, id: id, imgUrl: url });
listViewInstance.getLiFromObjOrElement({ id: id }).getElementsByClassName('e-delete-btn')[0].addEventListener('click', onDeleteBtnClick);
dialogObj.hide();
}
//Here we are sorting list item
function sortItems() {
var ele = document.getElementById("sort").firstElementChild;
var des = ele.classList.contains(desClass) ? true : false;
if (des) {
ele.classList.remove(desClass);
ele.classList.add(ascClass);
listViewInstance.sortOrder = 'Ascending'
} else {
ele.classList.remove(ascClass);
ele.classList.add(desClass);
listViewInstance.sortOrder = 'Descending'
}
listViewInstance.dataBind();
wireEvents();
}
//Here, the list items are filtered using the DataManager instance.
function onKeyUp(e) {
var value = (document.getElementById("search")).value;
var data = new ej.data.DataManager(fruitsdata).executeLocal(
new ej.data.Query().where("text", "startswith", value, true)
);
if (!value) {
listViewInstance.dataSource = fruitsdata.slice();
} else {
listViewInstance.dataSource = data;
listViewInstance.dataBind();
}
}
<!DOCTYPE html><html lang="en"><head>
<title>Essential JS 2 for 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 ListView UI Control">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/23.1.36/ej2-base/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/23.1.36/ej2-lists/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/23.1.36/ej2-buttons/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/23.1.36/ej2-popups/styles/material.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/23.1.36/ej2-inputs/styles/material.css" rel="stylesheet">
<script src="https://cdn.syncfusion.com/ej2/23.1.36/dist/ej2.min.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div class="headerContainer">
<div class="e-input-group">
<input id="search" class="e-input" type="text" placeholder="Search fruits">
<span class="e-input-group-icon e-input-search"></span>
</div>
<button id="sort" class="e-control e-btn e-small e-round e-primary e-icon-btn" title="Sort fruits" data-ripple="true">
<span class="e-btn-icon e-icons e-sort-icon-ascending"></span>
</button>
<button id="add" class="e-control e-btn e-small e-round e-primary e-icon-btn" title="Add fruit" data-ripple="true">
<span class="e-btn-icon e-icons e-add-icon"></span>
</button>
<div id="dialog"></div>
</div>
<div id="element"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>