Trong ts is_edit = true
để vô hiệu hóa ...
<input [disabled]="is_edit=='false' ? true : null" id="name" type="text" [(ngModel)]="model.name" formControlName="name" class="form-control" minlength="2">
Tôi chỉ đơn giản muốn vô hiệu hóa đầu vào dựa trên true
hoặc false
.
Tôi đã thử làm theo:
[disabled]="is_edit=='false' ? true : null"
[disabled]="is_edit=='true'"
[disabled]="is_edit"