首页 > 代码库 > bootstrap table datailView使用中遇到的问题
bootstrap table datailView使用中遇到的问题
最近在研究bootstrap table的使用,过程中查询了许多资料,在给table做点击下拉详情时发现网上的资料大部分是基础应用的资料,只有很少的一部分关于这部分的资料,而且并不完全。这里记录一下昨天遇到的问题。
在数据绑定上用了$(‘#table‘).bootstrapTable({...})的方式,在参数中添加了
detailView:true,
detailFormatter:function(index, row){
var html = [];
$.each(row, function (key, value) {
html.push(‘<p><b>‘ + key + ‘:</b> ‘ + value + ‘</p>‘);
})
}
发现table上确实出现了可操作按钮
但是当点击展开按钮会报错404无法找到action[],也无法进入detailFormatter定义的方法中,遍寻无果,不得已改用另一种数据绑定的方式
<table id="table" data-mobile-responsive="true"
data-toggle="table" data-toolbar="#toolbar"
data-detail-view="true" data-pagination="true"
data-page-number="1" data-page-size="10" data-page-list="[10,20,30]"
data-click-to-select="true" data-show-columns="true"
data-side-pagination="server"
data-detail-formatter="detailFormatter"
data-url="./showOrderList">
<thead>
<tr>
<th data-field="id">ID</th>
<th data-field="contractNo">货单合同编号</th>
<th data-field="sendTime" >发货日期</th>
</tr>
</thead>
</table>
成功进入了detailFormatter定义的方法中
field: ‘id‘,
title: ‘ID‘,
visible: false
}]
background-image:url(../images/up.png);
display: block;
margin-left: 3px;
height: 16px;
width: 16px;
background-repeat: no-repeat;
}
.glyphicon.img-up{
background-image:url(../images/down.png);
display: block;
margin-left: 3px;
height: 16px;
width: 16px;
background-repeat: no-repeat;
background-position: center center;
}
field: ‘state1‘,
title: ‘操作‘,
formatter: xlFMT
}
return "<a href=‘javascript:‘ class=\"detail-icon\" ><i class=\"glyphicon img-up\"></i></a> ";
}
data-icons | Object | { paginationSwitchDown: ‘glyphicon-collapse-down icon-chevron-down‘, paginationSwitchUp: ‘glyphicon-collapse-up icon-chevron-up‘, refresh: ‘glyphicon-refresh icon-refresh‘ toggle: ‘glyphicon-list-alt icon-list-alt‘ columns: ‘glyphicon-th icon-th‘ detailOpen: ‘glyphicon-plus icon-plus‘ detailClose: ‘glyphicon-minus icon-minus‘ } |
自定义图标 |
detailOpen: ‘img-up‘,
detailClose: ‘img-down‘,
refresh: ‘glyphicon-refresh icon-refresh‘,
toggle: ‘glyphicon-list-alt icon-list-alt‘,
columns: ‘glyphicon-th icon-th‘
},
is subtable | Collapse all rows if the detail view option is set to True. |
$(‘#table‘).bootstrapTable("collapseAllRows");
var html = [];
$.each(row, function (key, value) {
if(key==‘orderType‘){
if(value=http://www.mamicode.com/=1){
html.push(‘<span>‘ + ‘委托代发单‘ + ‘</span>‘);
}
if(value=http://www.mamicode.com/=0){
html.push(‘<span>‘ + ‘货主自派单 ‘+ ‘</span>‘);
}
}
//html.push(‘<p><b>‘ + key + ‘:</b> ‘ + value + ‘</p>‘);
});
return html.join(‘‘);
}
同时说一下,因为展开的操作列是人工写入的,可能跳过了框架本身的某些限定,所以,在定义columns的字段时,加入visible:false也同样生效。
{
field: ‘orderType‘,
title: ‘货源类型‘,
formatter: checkFMT,
events: operateEvents,checkFM
}
function checkFMT(value) {
return "<a href=‘javascript:void(0)‘ class=\"check_a check_a_active\" style=‘margin-right:5px‘ value=http://www.mamicode.com/"1\" >"+value+"</a> ";
}
//格式化a标签点击事件
window.operateEvents = {
‘click a‘: function (e, value, row, index) {
window.location.href=http://www.mamicode.com/url;
}
};
bootstrap table datailView使用中遇到的问题