We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeba249 commit 4666523Copy full SHA for 4666523
src/BootstrapTable.js
@@ -404,7 +404,9 @@ class BootstrapTable extends Component {
404
405
if (typeof result == 'undefined' || result !== false) {
406
if (isSelected) {
407
- selectedRowKeys = this.store.getAllRowkey();
+ selectedRowKeys = Array.isArray(result) ?
408
+ result :
409
+ this.store.getAllRowkey();
410
}
411
412
this.store.setSelectedRowKey(selectedRowKeys);
0 commit comments