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
|
<div id="kendogrid_table"></div>
<link rel="stylesheet" type="text/css" href="https://www.chenshaowen.com/blog/styles/kendo.common.min.css"/>
<script src='https://www.chenshaowen.com/blog/js/kendo.all.min.js'></script>
<script src='https://www.chenshaowen.com/blog/js/jszip.min.js'></script>
$(document).ready(function() {
$('#tableID').kendoGrid({
pageable: false,
sortable: true,
dataSource: [
{'name': 'Tiger Nixon', 'position': 'System Architect', 'age': '61', 'salary': '$320,800'},
{'name': 'Garrett Winters', 'position': 'Accountant', 'age': '63', 'salary': '$170,750'},
{'name': 'Ashton Cox', 'position': 'Junior Technical Author', 'age': '66', 'salary': '$86,000'},
{'name': 'Cedric Kelly', 'position': 'Senior Javascript Developer', 'age': '22', 'salary': '$433,060'},
{'name': 'Herrod Chandler', 'position': 'Sales Assistant', 'age': '59', 'salary': ' $137,500'},
{'name': 'Rhona Davidson', 'position': 'Integration Specialist', 'age': '55', 'salary': '$327,900'},
],
toolbar: ['excel'],
columns: [
{
field: 'name',
title: '姓名'
},
{
field: 'position',
title: '职位'
},
{
field: 'age',
title: '年龄'
},
{
field: 'salary',
title: '薪水'
}
]
})
});
|