(e: KeyboardEvent)
| 883 | } |
| 884 | |
| 885 | _onColumnHeaderKeydown(e: KeyboardEvent) { |
| 886 | if (isSpace(e)) { |
| 887 | e.preventDefault(); |
| 888 | this.isMultiSelect && this._selectAll(); |
| 889 | } |
| 890 | } |
| 891 | |
| 892 | _onLoadMoreKeydown(e: KeyboardEvent) { |
| 893 | if (isSpace(e)) { |
nothing calls this directly
no test coverage detected