jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
76 lines (75 loc) • 4.18 kB
HTML
<html ng-app="demoApp" lang="en">
<head>
<title id="Description">Grouping and Server Paging with AngularJS DataTable</title>
<meta name="description" content="AngularJS DataTable with Server data Paging and Grouping.">
<meta name="description" content="This sample demonstrates how we can implement Grouping and Server Paging with a Javascript Grid" />
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/angular.min.js"></script> <script type="text/javascript" src="../../../scripts/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdatatable.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script><script type="text/javascript" src="../../../jqwidgets/jqxangular.js"></script>
<script type="text/javascript">
var demoApp = angular.module("demoApp", ["jqwidgets"]);
demoApp.controller("demoController", function ($scope) {
$scope.gridSettings =
{
width: 850,
pageable: true,
pagerButtonsCount: 10,
serverProcessing: true,
source: new $.jqx.dataAdapter({
dataType: "json",
dataFields: [
{ name: 'ShipCountry', type: 'string' },
{ name: 'ShipCity', type: 'string' },
{ name: 'ShipAddress', type: 'string' },
{ name: 'ShipName', type: 'string' },
{ name: 'Freight', type: 'number' },
{ name: 'ShippedDate', type: 'date' }
],
root: 'value',
formatData: function (data) {
// update the $skip and $top params of the OData service.
// data.pagenum - page number starting from 0.
// data.pagesize - page size
data.$skip = data.pagenum * data.pagesize;
data.$top = data.pagesize;
data.$orderby = "ShipCountry asc";
data.$inlinecount = "allpages";
return data;
},
downloadComplete: function (data, status, xhr) {
data.totalRecords = parseInt(data["odata.count"]);
return data;
},
loadError: function (xhr, status, error) {
throw new Error("http://services.odata.org: " + error.toString());
},
url: "http://services.odata.org/V3/Northwind/Northwind.svc/Orders?$format=json&$callback=?"
}),
altRows: true,
groups: ['ShipCountry'],
groupsRenderer: function(value, rowData, level)
{
return "Ship Country: " + value;
},
columnsResize: true,
columns: [
{ text: 'Ship Name', dataField: 'ShipName', width: 250 },
{ text: 'Ship Country', hidden: true, dataField: 'ShipCountry', width: 250 },
{ text: 'Ship City', dataField: 'ShipCity', width: 150 },
{ text: 'Ship Address', dataField: 'ShipAddress' }
]
};
});
</script>
</head>
<body ng-controller="demoController">
<h3 style="font-size: 16px; font-family: Verdana;">Data Source: "http://services.odata.org"</h3>
<jqx-data-table jqx-settings="gridSettings"></jqx-data-table>
</body>
</html>