You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I have reactive form in aw-wizard-step and without validation check I restrict the stepping with [canExit]= "canExitStep1". I initialize my canExitStep1 variable as false. As I fill the all form fields it returns true and convert canExitStep1 false to true which let aw-wizard to skip to nextPage. However even though form is valid and canExitStep1 is true the awNextStep does not trigger at first but second. As a solution I tried to implement stepping process with TS by getting aw-wizard with ViewChild. but kept getting undefined erros just because having my aw-wizard template in a ng-template. I dont know why canExit does not trigger at first ? I'd be really greatfull if u could help.
Which version of angular-archwizard are you using? The input navigationMode of WizardComponent does not exist anymore in the current version, it appears that you are using an older version. Can you please try again with the newest version of angular-archwizard?
If this does not help. Can you please provide me a short buildable example project illustrating your issue?
Hi I have reactive form in aw-wizard-step and without validation check I restrict the stepping with [canExit]= "canExitStep1". I initialize my canExitStep1 variable as false. As I fill the all form fields it returns true and convert canExitStep1 false to true which let aw-wizard to skip to nextPage. However even though form is valid and canExitStep1 is true the awNextStep does not trigger at first but second. As a solution I tried to implement stepping process with TS by getting aw-wizard with ViewChild. but kept getting undefined erros just because having my aw-wizard template in a ng-template. I dont know why canExit does not trigger at first ? I'd be really greatfull if u could help.
` <ng-template #convertLeadModal>
`
TS
SubmitForm1(){ this.canExitStep1 = this.convertLeadForm1.valid }
The text was updated successfully, but these errors were encountered: