我有一个创建引导表的函数,我必须动态合并该表中的特定列。
this.$('#Table1').bootstrapTable({
striped: false,
minimumCountColumns: 2,
smartDisplay:true,
clickToSelect: false,
columns:[
{
field:'Key2',
title: $.t('report:'+code+'.Col2'),
align: 'left',
valign: 'middle',
sortable: true,
events : this.linkEvents
formatter :this.linkFormatter
}
]
});
链接事件函数:
linkEvents: {
'onPostBody #Table1': function(e,value,row,index) {
console.log("Inside post-body event");
$('#Table1').bootstrapTable('mergeCells',{
index:6,
colspan:2
});
}
}
即使上面的代码不起作用,它也没有进入 mergeCells 方法。请帮我解决这个问题..