Home
last modified time | relevance | path

Searched refs:tableRef (Results 1 – 1 of 1) sorted by relevance

/openbmc/webui-vue/src/components/Mixins/
H A DBVTableSelectableMixin.js7 clearSelectedRows(tableRef) { argument
8 if (tableRef) tableRef.clearSelected();
10 toggleSelectRow(tableRef, rowIndex) { argument
11 if (tableRef && rowIndex !== undefined) {
12 tableRef.isRowSelected(rowIndex)
13 ? tableRef.unselectRow(rowIndex)
14 : tableRef.selectRow(rowIndex);
32 onChangeHeaderCheckbox(tableRef) { argument
33 if (tableRef) {
34 if (this.tableHeaderCheckboxModel) tableRef.selectAllRows();
[all …]