Last active
May 19, 2020 02:24
-
-
Save tommydunn/28986f162e620578f6020f805a0ea672 to your computer and use it in GitHub Desktop.
toggle selected item inside ngFor in angular
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| product: Product; | |
| selectedProduct: product; | |
| onSelect(product: Product) { | |
| this.selectedProduct = product; | |
| } | |
| # in your html | |
| (click)="onSelect(product)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment