Hi Elias, thank you for the answer - don't know though if it exactly answers my problem. Does the call produce local variables like the #knob1, #knob2 and so on? The component (ng2-knob) relies on a specified local variable
Regards, Christian Am Montag, 31. Juli 2017 11:58:43 UTC+2 schrieb Sander Elias: > > Hi Sanansaattaje, > > Put the values in an array, you can then use this array in your > controller. In your view you dom something like: > <ng-container *ngFor="let item of [2,6,9]"> > <knob [value]='item' (change)='item = $event.target.value'></knob> > </ng-container> > > Of course using an actual array from your controller makes this useful. > > Regards > Sander > > -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
