伙计们,我如何用新组重新加载数据。
$('#table').bootstrapTable({
url:'myjsondata',
pagination: false,
search: true,
classes: "table-model05",
toolbar:"#toolbar",
toolbarAlign:"right",
locale: 'pt-BR',
groupBy: true,
groupByField: 'field1',
order : 'desc',
columns: [
{
field: 'field1',
title: 'Meu grupo'
},{
field: 'field2',
title: 'Next grupo'
}
]
});
但是在加载之后,我需要按field2对其进行分组。
我尝试过:
$('#table').bootstrapTable('refresh', {
groupBy: true,
groupByField: 'field2'
});
但是它不起作用。有帮助吗?
致谢