最近接触一个NB插件,Bootstrap table 没做过前端的表示对table的印象还只停留在html的table标签那一套,用过bootstrap table之后不得不说真是牛X。
构造方式
1 、HTML
<div class="btn-group hidden-xs"id="exampleTableEventsToolbar" >
</div>
<table data-toggle="table"
data-url="${ctxAdmin}/user/userData?orgId=${orgId}"
data-pagination="true"
data-show-search="true"
data-show-columns="true"
data-icon-size="outline"
data-mobile-responsive="true"
data-height="500"
id="tablelist"
data-side-pagination="server"
<thead>
<tr>
<th data-field="user_id">ID</th>
<th data-field="username"
data-formatter="usernameFormatter"
data-events="usernameEvents">用户名</th>
<th data-field="real_name">真实姓名</th>
<th data-field="tel_num">座机</th>
<th data-field="mobile">手机</th>
<th data-field="user_type">用户类型</th>
<th data-field="operation"
data-formatter="actionFormatter"
data-events="actionEvents">操作</th>
</tr>
</thead>
</table>
- 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
- 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
2 、 js构造:
(function() {
$('#tablelist').bootstrapTable({
url: "${ctxAdmin}/user/userData?orgId=${orgId}",
search: true,
pagination: true,
showRefresh: true,
showToggle: true,
showColumns: true,
iconSize: 'outline',
icons: {
refresh: 'glyphicon-repeat',
toggle: 'glyphicon-list-alt',
columns: 'glyphicon-list'
}
});
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
结合官网上展示的Table options,Column options,Events,Methods可以完成很多功能。上面的data-formatter ,data-events就是Column options中的选项 。
data-formatter 和 data-events
要实现如下效果,用上面两个option配合使用即可,一个定义格式,一个定义点击的操作。
直接上js代码
function actionFormatter(value, row, index) {
return '<a class="mod" >修改</a> ' + '<a class="delete">删除</a>';
}
window.actionEvents = {
'click .mod': function(e, value, row, index) {
},
'click .delete' : function(e, value, row, index) {
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
服务器分页/客户端分页的转换,table刷新
bootstrap默认是客户端分页 ,可通过html标签
data-side-pagination:"client"
或者js中的
sidePagination: 'server'
指定。注意,这两种后台传过来的json数据格式也不一样
client : 正常的json array格式 [{},{},{}]
server: {“total”:0,”rows”:[]} 其中total表示查询的所有数据条数,后面的rows是指当前页面展示的数据量。
有事需要根据情况改变分页方式,就要用到Methods中的
‘refreshOptions’ //设置更新时候的options
‘refresh’ //设置更新时的 url ,query(往后台传参数)
$("#tablelist").bootstrapTable('refreshOptions', {
sidePagination: 'client'
});
$("#tablelist").bootstrapTable('refresh', {
url: "${ctxAdmin}/user/getsearchuserinfo",
query: {username: $('#sea-username').val(),realname: $("#sea-realname").val(),mobile: $("#sea-mobile").val()}
});