$(function(){
$("#gridContainer").dxDataGrid({
showBorders: true,
dataSource: {
store: {
type: "odata",
url: "https://js.devexpress.com/Demos/DevAV/odata/Products"
},
select: [
"Product_ID",
"Product_Name",
"Product_Cost",
"Product_Sale_Price",
"Product_Retail_Price",
"Product_Current_Inventory"
],
filter: ["Product_Current_Inventory", ">", 0]
},
columns: [
"Product_ID", {
dataField: "Product_Name",
width: 250
}, {
caption: "Cost",
dataField: "Product_Cost",
dataType: "number",
format: "currency"
}, {
dataField: "Product_Sale_Price",
caption: "Sale Price",
dataType: "number",
format: "currency"
}, {
dataField: "Product_Retail_Price",
caption: "Retail Price",
dataType: "number",
format: "currency"
}, {
dataField: "Product_Current_Inventory",
caption: "Inventory"
}
]
});
});
<!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.4.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/19.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/19.2.4/js/dx.all.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="gridContainer"></div>
</div>
</body>
</html>