Searched refs:radioList (Results 1 – 2 of 2) sorted by relevance
476 let radioList = this.shadowRoot!.querySelectorAll<HTMLInputElement>('.radio');480 radioList![Number(this.transferChecked)].checked = true;482 radioList![radioList.length - 1].checked = true;501 this.transferChecked = radioList![idx].value;502 radioList![idx].checked = true;505 value: radioList![idx].value,513 let radioList = this.shadowRoot!.querySelectorAll<HTMLInputElement>('.radio');515 radioList![Number(this.transferChecked)].checked = false;517 radioList![radioList.length - 1].checked = false;
680 …let radioList: NodeListOf<any> = this.shadowRoot!.querySelectorAll('input[type=radio][name=status]… variable681 if (radioList!.length > 0) {682 radioList[Number(value)].checked = true;