Skip to content

Commit

Permalink
adding disabled prop to the declarative input html
Browse files Browse the repository at this point in the history
  • Loading branch information
ssreerama committed Sep 13, 2023
1 parent 7a1d031 commit 654ae96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
[selectedOption]="getSelectedOptionDisplayName(r,c)">
</editable-select-box>
<input-box *ngIf="isInputBox(c)" [value]="cellData.value"
(onDidChange)="onInputBoxChanged($event,r,c)"></input-box>
(onDidChange)="onInputBoxChanged($event,r,c)" [attr.disabled]="!isControlEnabled(r, c)"></input-box>
<span *ngIf="isLabel(c)">
{{cellData.value}}
</span>
Expand Down

0 comments on commit 654ae96

Please sign in to comment.