MCPcopy Create free account
hub / github.com/UI5/webcomponents / _handleSelect

Method _handleSelect

packages/compat/src/Table.ts:990–999  ·  view source on GitHub ↗
(e: CustomEvent<TableRowSelectionRequestedEventDetail>)

Source from the content-addressed store, hash-verified

988 }
989
990 _handleSelect(e: CustomEvent<TableRowSelectionRequestedEventDetail>) {
991 if (this.isSingleSelect) {
992 this._handleSingleSelect(e);
993 return;
994 }
995
996 if (this.isMultiSelect) {
997 this._handleMultiSelect(e);
998 }
999 }
1000
1001 _selectAll() {
1002 const bAllSelected = !this._allRowsSelected;

Callers

nothing calls this directly

Calls 2

_handleSingleSelectMethod · 0.95
_handleMultiSelectMethod · 0.95

Tested by

no test coverage detected