Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass variable to "data-target=" angular 2

I'm working with angular 2 typescript and i want to create a toggle collapse list. This is simple with single id and data-target but i loop throught a list so i have dynamic id names. I want to pass a variable in my data-target so i can reach the dynamic names of the id's. something like this:

<a data-toggle="collapse" data-target="#{{theme.themeId}}>collapseHere </a> but this gives me a syntax error.

Is it possibly to pass variables with a data-target?

like image 694
Kupi Avatar asked Mar 11 '16 15:03

Kupi


3 Answers

You could used attribute binding. Something like that:

[attr.data-target]="'#' + theme.themeId"
like image 176
Thierry Templier Avatar answered Nov 08 '22 02:11

Thierry Templier


Yes exactly you can use

*ngFor="a of Array; index as i;"

and

[attr.data-target]="'#test' + i"

and

name="test{{i}}
like image 28
Mayur Saner Avatar answered Nov 08 '22 03:11

Mayur Saner


To pass a variable in Angular 7 you can use it just like:

[attr.data-target] = "theme.themeId"
like image 8
harshit raghav Avatar answered Nov 08 '22 03:11

harshit raghav