(search)
| 10501 | return this.filteredData || this.data; |
| 10502 | } |
| 10503 | select(search) { |
| 10504 | this.deselect(); |
| 10505 | if (search) { |
| 10506 | this.selection = this.createUserSelection(search, true, false); |
| 10507 | if (this.selection.included.length) this.activate(this.selection.included[0]); |
| 10508 | } |
| 10509 | } |
| 10510 | createUserSelection(search, assign, rebase) { |
| 10511 | const exec = new (0, _searchExpression.Exec)(search, this.getColumns()); |
| 10512 | const s = { |
nothing calls this directly
no test coverage detected