现在我有两个想法将两个数据组合在一个列中,但是当我用我的方式解决时出了点问题。
第一种方式肯定是错误的,因为不能把+组合起来
<th data-column-id="NO_ID" >N0</th>
change to---> <th data-column-id="NO_ID + USR_ID" >N0</th>
这是第二种方式,不能使用,因为我已经使用一个格式化程序调用命令来显示按钮,我不能让这两个命令和测试工作
<script>
formatters:
{
"commands": function(column, row)
{
return "<button type=\"button\" class=\"btn btn-xs btn-default command-delete\" data-row-id=\"" + row.NO_ID + "\"><span class=\"glyphicon glyphicon-trash\"></span></button>"
}
"test": function(column, row)
{
return "NO_ID","USR_ID";
}
</script>
答案 0 :(得分:0)
我发现同样的问题 好像需要更改bootgrid.js文件....
答案 1 :(得分:0)
是的,你可以这样做:
$('#yourBootGridTableId').bootgrid({
formatters: {
"commands": function(column, row){
return "<button type=\"button\" class=\"btn btn-xs btn-default command-delete\" data-row-id=\"" + row.NO_ID + "\"><span class=\"glyphicon glyphicon-trash\"></span></button>";
},
"test": function(column, row){
return "<div>" + row.NO_ID + ", " + row.USR_ID + "</div>";
}
},
rowCount: [5, 10, 25],
caseSensitive: false,
selection: false,
multiSelect: false, //Other bootgrid options...
});