* Gets the current selection.
()
| 763 | * Gets the current selection. |
| 764 | */ |
| 765 | getSelection() { |
| 766 | if (!this._dataScope) return null; |
| 767 | const selectionState: SelectionState = { |
| 768 | search: (this._dataScope.selection && this._dataScope.selection.search) || null, |
| 769 | selectedData: (this._dataScope.selection && this._dataScope.selection.included) || null, |
| 770 | active: this._dataScope.active, |
| 771 | }; |
| 772 | return selectionState; |
| 773 | } |
| 774 | |
| 775 | /** |
| 776 | * Set one data row to the active state. |
no outgoing calls
no test coverage detected