When searching do not split header field by '.' if there is such property in the item.
@@ -1069,7 +1069,7 @@ class BootstrapTable {
const column = this.columns[this.fieldsColumnsIndex[key]]
let value
- if (typeof key === 'string') {
+ if (typeof key === 'string' && !item.hasOwnProperty(key)) {
value = item
const props = key.split('.')