0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Angular】チェックボックスのdisabled(非活性)を親コンポーネントから制御する

Posted at

やろうとしていたこと

画面初期化時に、ある条件を満たした時だけ、チェックボックスを非活性にしたくなった。
しかしながら、チェックボックスは子コンポーネントとして、部品化されていたため、親コンポーネントから値を受け取れるように修正する必要があった。
その方法について紹介します。
この方法であれば、親コンポーネントごとに設定できるので、親コンポーネント同士で影響がありません。

子(checkbox.component)

 
クラス

@Input()
fromParent:boolean = false;

テンプレート

<input type="checkbox" [disabled]="fromParent">
</input>

親(page.component)

クラス


disabledFlg: boolean  = false;

ngOnInit(){
  this.changeDisabled();
}

changeDisabled(){
 if(someCondition){
  //特定の条件を満たしたら、trueをセット。
   disabledFlg = true;
 }
}

テンプレート

<app-checkbox [fromParent]="disabledFlg"></app-checkbox>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?