angular2-wizard
angular2-wizard copied to clipboard
Dynamic wizard-steps
Hi, how can I setup dynamic wizard steps? I have tried with following code but no luck.
<wizard-step *ngFor="let test of testArray" [title]="test.Name" (onNext)="testFunc($event)"> <h1>Step {{test.Name}}</h1> </wizard-step>
It's working for me, but I had to code an empty timeout in order to show content (facepalm)