data:
[
{
id: 1001,
other: {
name: "foobar"
}
},
{...},...
]
table:
...
<table data-flat="true">
<thead>
<tr>
<th data-field="other.name"></th>
</tr>
var selected = $myTable.bootstrapTable('getSelections');
console.log('Selected', selected);
result:
[
{
id: 1001,
other.name: "foobar"
},
{...},...
]
Ref: wenzhixin/bootstrap-table#1280