var DemoApp = angular.module('DemoApp', ['dx']);
DemoApp.controller('DemoController', function DemoController($scope) {
$scope.dataGridOptions = {
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.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/20.2.5/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.light.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.16/angular.min.js"></script>
<script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script>
<script src="https://cdn3.devexpress.com/jslib/20.2.5/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" ng-app="DemoApp" ng-controller="DemoController">
<div id="gridContainer" dx-data-grid="dataGridOptions"></div>
</div>
</body>
</html>