Skip to content

Instantly share code, notes, and snippets.

@tommydunn
Last active May 19, 2020 02:24
Show Gist options
  • Select an option

  • Save tommydunn/28986f162e620578f6020f805a0ea672 to your computer and use it in GitHub Desktop.

Select an option

Save tommydunn/28986f162e620578f6020f805a0ea672 to your computer and use it in GitHub Desktop.
toggle selected item inside ngFor in angular
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