table_t.js
1.9 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
// JavaScript Document
$(function() {
$('#table').bootstrapTable({
method:"post",
url: "json/data.json",
dataType: "json",
pagination: true, //分页
singleSelect: false,
pageList:[10,20,50],
locale:"zh-US", //表格汉化
search: false, //显示搜索框
columns: [
{
checkbox:"true",
field: 'name',
align: 'center',
valign: 'middle'
},
{
title: '状态',
field: 'status',
align: 'center',
valign: 'middle'
},
{
title: '参与人数',
field: 'participationCounts',
align: 'center'
},
{
title: '总人数',
field: 'totalCounts',
align: 'center'
},
{
title: '开始时间',
field: 'startTime',
align: 'center'
},
{
title: '操作',
field: 'id',
align: 'center',
formatter: function (value, row) {
var e = '<a href="#" mce_href="#" onclick="edit(\'' + row.id + '\')">编辑</a> ';
// var d = '<a href="#" mce_href="#" onclick="del(\'' + row.id + '\')">删除</a> ';
return e;
}
}
]
});
})