In actual version of bootstrap-table (1.11.0) found an error that occurs when if the application code is available code:
Array.prototype.xxx = function () {}
To fix the error in the method getItemField should be added to the condition with hasOwnProperty:
for (var p in props) {
if (props.hasOwnProperty(p)) {
value = value && value[props[p]];
}
}
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||