forked from giratek/jquery-datatables-row-grouping
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserverSideJSONP.html
More file actions
143 lines (102 loc) · 4.54 KB
/
serverSideJSONP.html
File metadata and controls
143 lines (102 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" type="image/ico" href="http://www.sprymedia.co.uk/media/images/favicon.ico">
<title>Grouping Server Side processed DataTable</title>
<style type="text/css" title="currentStyle">
@import "media/css/demo_page.css";
@import "media/css/demo_table.css";
@import "media/css/themes/base/jquery-ui.css";
@import "media/css/themes/smoothness/jquery-ui-1.7.2.custom.css";
</style>
<script src="media/js/jquery.min.js" type="text/javascript"></script>
<script src="media/js/jquery.dataTables.min.js" type="text/javascript"></script>
<script src="media/js/jquery-ui.js" type="text/javascript"></script>
<script src="media/js/jquery.dataTables.rowGrouping.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready( function () {
$('#example').dataTable({
"bProcessing": true,
"bServerSide": true,
//"sAjaxSource": "server_processing.js"
"sAjaxSource": "http://datatables.net/release-datatables/examples/server_side/scripts/jsonp.php",
"fnServerData": function( sUrl, aoData, fnCallback ) {
$.ajax( {
"url": sUrl,
"data": aoData,
"success": fnCallback,
"dataType": "jsonp",
"cache": false
} );
}
}
).rowGrouping();
} );
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17838786-4']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body id="dt_example">
<div id="container">
<a href="index.html">Home</a>
<a href="https://github.com/djwoodward/jquery-datatables-row-grouping/wiki">Wiki</a>
<h1 class="full_width big">
JQuery DataTable Row Grouping - Grouping Server Side processed DataTable
</h1>
<div id="demo">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
<thead>
<tr>
<th>Rendering engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS grade</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Rendering engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS grade</th>
</tr>
</tfoot>
<tbody>
</tbody>
</table>
</div>
<div class="spacer"></div>
<ul>
<li><a href="default.html">Basic usage</a></li>
<li><a href="letters.html">Group by letter</a></li>
<li><a href="year.html">Group by year</a></li>
<li><a href="customGroupOrdering.html">Custom group ordering</a></li>
<li><a href="ajax.html">Ajax source grouping</a></li>
<li><a href="collapsibleGroups.html">Collapsible/Expandable groups</a></li>
<li><a href="accordion.html">Accordion Grouping</a></li>
<li><a href="customization.html">Add-in customization</a></li>
<li><a href="multipleTables.html">Multiple tables on the same page</a></li>
<li><a href="twoLevelGrouping.html">Two level grouping</a></li>
<li><a href="serverSideJSONP.html">Grouping Server-side processed data</a></li>
<li><a href="serverSideJSONP-objects.html">Grouping Server-side processed data (using objects instead of array)</a></li>
<li><a href="serverSideJSONP-ids.html">Grouping Server-side processed data (with automatic population of Ids)</a></li>
</ul>
<div id="footer" style="text-align:center;">
<span style="font-size:10px;">
DataTables Row Grouping Add-on © Jovan Popovic 2011-2012.<br>
DataTables designed and created by <a href="http://www.sprymedia.co.uk">Allan Jardine</a> © 2007-2012<br>
</span>
</div>
</div>
</body>
</html>