initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / static / js / index / index.js
1 $(document).ready(function () {
2     $('#meetingSessionsTable').dataTable({
3         "sPaginationType": "full_numbers",
4         "aLengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]],
5         "iDisplayLength": 50,
6         "aaSorting": [[1, "desc"]],
7         "sDom": 'Tfrtlip',
8         "oTableTools": {
9             "sSwfPath": "/static/swf/copy.csv.xls.swf",
10             "aButtons": ["copy", "csv"]
11         }
12     });
13
14     $("#reportYear")
15         .change(function() {
16             var year = $(this).val();
17             var url = window.location = window.location.protocol + '//' + window.location.host + '?year=' + year;
18         });
19 });