$(() => {
const toast = $('#toast').dxToast({ displayTime: 600 }).dxToast('instance');
const checkAvailable = function (data) {
const type = data.value ? 'success' : 'error';
const productName = data.element.parent().find('.name').text();
const message = productName + (data.value ? ' is available' : ' is not available');
toast.option({ message, type });
toast.show();
};
$.each(products, (i, product) => {
$('<li />').append(
$('<img />').attr('alt', product.Name).attr('src', product.ImageSrc),
$('<div />').attr('class', 'name').text(product.Name),
$('<div />')
.dxCheckBox({
text: 'Available',
onValueChanged: checkAvailable,
}),
).appendTo($('.products'));
});
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.1.5/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/23.1.5/js/dx.all.js"></script>
<script src="data.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="product-list">
<h1>Product List</h1>
<ul class="products"></ul>
<div id="toast"></div>
</div>
</div>
</body>
</html>
#product-list {
padding: 10px;
}
#product-list ul {
text-align: center;
list-style-type: none;
margin: 20px 0;
}
#product-list ul li {
display: inline-block;
width: 160px;
margin: 10px;
}
#product-list ul li img {
width: 100px;
}
.dx-toast-content {
min-width: 300px;
max-width: 400px;
}
const products = [{
ID: 4,
Name: 'SuperLED 50',
Price: 1600,
Current_Inventory: 77,
Backorder: 0,
Manufacturing: 55,
Category: 'Televisions',
ImageSrc: '../../../../images/products/4.png',
}, {
ID: 5,
Name: 'SuperLED 42',
Price: 1450,
Current_Inventory: 445,
Backorder: 0,
Manufacturing: 0,
Category: 'Televisions',
ImageSrc: '../../../../images/products/5.png',
}, {
ID: 6,
Name: 'SuperLCD 55',
Price: 1350,
Current_Inventory: 345,
Backorder: 0,
Manufacturing: 5,
Category: 'Televisions',
ImageSrc: '../../../../images/products/6.png',
}, {
ID: 7,
Name: 'SuperLCD 42',
Price: 1200,
Current_Inventory: 210,
Backorder: 0,
Manufacturing: 20,
Category: 'Televisions',
ImageSrc: '../../../../images/products/7.png',
}];