3 回答
TA贡献1836条经验 获得超4个赞
//使用ajax加载动态列的
var columns = [];
$.ajax({
url: 'getColumns.action',
type: 'post',
data: data,
dataType: "json",
async: true,
success: function (returnValue) {
//异步获取要动态生成的列
var arr = returnValue;
$.each(arr, function (i, item) {
columns.push({ "field": item.colname, "title": item.colalias, "width": 100, "sortable": true });
});
});
$('#table_id').bootstrapTable('destroy').bootstrapTable({
data: data,
columns: columns
...
...
})
TA贡献1828条经验 获得超4个赞
$('#table_id').bootstrapTable('destroy').bootstrapTable({
data: data,
columns: [{
field: 'whichperiod',
title: '第几期'
}, {
field: 'overdueamounts',
title: '逾期金额(元)'
}, {
field: 'overduedate',
title: '逾期开始日期',
}, {
field: 'overduelong',
title: '逾期时长'
}, {
field: 'reason',
title: '逾期原因'
}, {
field: 'disposalstatus',
title: '处置状态'
}]
});
- 3 回答
- 0 关注
- 1856 浏览
添加回答
举报