58 строки
2.7 KiB
HTML
58 строки
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Essential JS 1 : Touch Grid</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="../content/bootstrap.min.css" rel="stylesheet" />
|
|
<link href="../content/ejthemes/default-theme/ej.web.all.min.css" rel="stylesheet" />
|
|
<link href="../content/default.css" rel="stylesheet" />
|
|
<link href="../content/default-responsive.css" rel="stylesheet" />
|
|
<link href="../content/ejthemes/responsive-css/ej.responsive.css" rel="stylesheet" />
|
|
<!--[if lt IE 9]>
|
|
<script src="../scripts/jquery-1.11.3.min.js"></script>
|
|
<![endif]-->
|
|
<!--[if gte IE 9]><!-->
|
|
<script src="../scripts/jquery-3.4.1.min.js"></script>
|
|
<!--<![endif]-->
|
|
<script src="../scripts/jsondata.min.js"></script>
|
|
<script src="../scripts/jsrender.min.js"></script>
|
|
<script src="../scripts/ej.web.all.min.js" type="text/javascript"></script>
|
|
<script src="../scripts/properties.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<div class="content-container-fluid">
|
|
<div class="row">
|
|
<div class="cols-sample-area">
|
|
<div id="Grid"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
// the datasource "window.gridData" is referred from jsondata.min.js
|
|
var data = window.gridData;
|
|
$("#Grid").ejGrid({
|
|
dataSource: data,
|
|
allowPaging: true,
|
|
allowSorting: true,
|
|
allowGrouping: true,
|
|
allowScrolling: true,
|
|
scrollSettings: { width: 600, height: 350 },
|
|
pageSettings:{pageSize:25},
|
|
columns: [
|
|
{ field: "OrderID", headerText: "Order ID", textAlign: ej.TextAlign.Right, width: 125 },
|
|
{ field: "CustomerID", headerText: "Customer ID", width: 120 },
|
|
{ field: "EmployeeID", headerText: "Employee ID", textAlign: ej.TextAlign.Right, width: 125 },
|
|
{ field: "Freight", textAlign: ej.TextAlign.Right, width: 125, format: "{0:C}" },
|
|
{ field: "OrderDate", textAlign: ej.TextAlign.Right, headerText: "Order Date", width: 130, format: "{0:MM/dd/yyyy}" },
|
|
{ field: "ShipName", textAlign: ej.TextAlign.Right, headerText: "Ship Name", width: 180},
|
|
{ field: "ShipCity", headerText: "Ship City", width: 110 },
|
|
{ field: "ShipCountry", textAlign: ej.TextAlign.Right, headerText: "Ship Country", width: 120 }
|
|
]
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|