We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have tried HTML one but not able to successfully implement it in angular. could someone please
The text was updated successfully, but these errors were encountered:
Me too :) never working as sampled on AdminLTE3
Sorry, something went wrong.
I have implemented it in angular
@ViewChild('stepper1', { static: false }) stepperRef!: ElementRef;
this.stepper = new Stepper(this.stepperRef.nativeElement, { linear: false, animation: true, }); const validateForm1Fields = [ 'firstName', 'lastName', 'gender', 'email', 'mobileNumber', 'governmentId', 'address', 'zipCode', 'country', 'state', 'city', ]; this.renderer2.listen(this.stepperRef.nativeElement, 'show.bs-stepper', (event: any) => { if (event.detail.from === 0) { if ( !validateForm1Fields.every((x) => this.ngForm.controls[x].status === 'VALID') ) { this.submitted = true; event.preventDefault(); } else { this.completedStep1 = true; this.submitted = false; } } }); } `
No branches or pull requests
I have tried HTML one but not able to successfully implement it in angular. could someone please
The text was updated successfully, but these errors were encountered: