我需要通过另一个外部复选框点击事件来禁用单选按钮,该事件是使用被动表单/ formGroup动态生成的。
我的组件代码适用于文本框和下拉列表,但不适用于广播或复选框
<label _ngcontent-c6="" class="container-vertical"> Dog
<input _ngcontent-c6="" type="radio" ng-reflect-form-control-name="01cb437e-0015-4c45-9828-fb2d1d" ng-reflect-value="8f77b6e1-2495-4781-9e40-520e94" ng-reflect-name="01cb437e-0015-4c45-9828-fb2d1d" class="ng-untouched ng-pristine ng-invalid">
<label _ngcontent-c6="" class="container-vertical"> Cat
<input _ngcontent-c6="" type="radio" ng-reflect-form-control-name="01cb437e-0015-4c45-9828-fb2d1d" ng-reflect-value="4102b66c-b8c3-4d41-afcd-5852e4" ng-reflect-name="01cb437e-0015-4c45-9828-fb2d1d" class="ng-untouched ng-pristine ng-invalid">
<label _ngcontent-c6="" class="container-vertical"> Fish
<input _ngcontent-c6="" type="radio" ng-reflect-form-control-name="01cb437e-0015-4c45-9828-fb2d1d" ng-reflect-value="5dc08818-38b0-4563-8e0a-ce8901" ng-reflect-name="01cb437e-0015-4c45-9828-fb2d1d" class="ng-untouched ng-pristine ng-invalid">
<div *ngSwitchCase="'radio'">
<div *ngFor="let opt of question.options" > <small>radio</small>
<label class="container-vertical"> {{opt.value}}
<input type="radio"
[formControlName]="question.key"
[value]="opt.key"
[(ngModel)]="question.value"
(change)="onChangeValue(question.value, previousValue, responseId, question.key, 'radio'); previousValue = question.value"
(focus)="previousValue=question.value"
>
<span class="checkmark"></span>
</label>
</div>
</div>
private handleQuestionAnswerProvidedStateChange(questionAnswerProvidedState:QuestionAnswerProvidedStateDataModel)
{
var formControlNameReference = questionAnswerProvidedState.QuestionId.substring(1,30);
// ???????????? need help here ... how to get reference of radio button to disable it
if(questionAnswerProvidedState!=null)
{
var elementReference = <HTMLInputElement> document.getElementById(questionAnswerProvidedState.QuestionId);
if(questionAnswerProvidedState.AnswerNotProvided == true)
{
elementReference.disabled = true;
elementReference.value = "";
elementReference.classList.add("disableInput");
}
else if(questionAnswerProvidedState.AnswerNotProvided == false)
{
elementReference.disabled = false;
elementReference.classList.remove("disableInput");
}
}
}
答案 0 :(得分:-1)
SELECT DISTINCT ON (date_trunc('month', invoicedate))
date_trunc('month', invoicedate) as Month_Name, customerid,
SUM( (quantity*unitprice)::numeric(15, 2) ) as Total_Money
FROM public."My_OnlineRetail"
GROUP BY Month_Name, customerid
ORDER BY Month_Name, Total_money DESC;
使用上面的属性<input type="radio" [(ngModel)]="radioButtonVisibility" [attr.disabled]="flag ? '' : null"
formControlName="radioButtonVisibility"/>
。如果变量标志包含任何值,则单选按钮将被禁用。如果变量标志为[attr.disabled]
,则单选按钮将被启用。根据要求,标志值必须设置为null或不为null。