ionic-stepper
ionic-stepper copied to clipboard
Manual Envoke .nextStep() from Ionic Page
Hi... Just wanted to check if there is a way to invoke nextStep from the methods in .ts backing component ?
Hi... Just wanted to check if there is a way to invoke nextStep from the methods in .ts backing component ?
yes
import { IonicStepperComponent } from "ionic-stepper";
@ViewChild('stepper') stepper: IonicStepperComponent;
constructor() { }
setNextStep() { this.stepper.nextStep(); }
setCustomStep () { this.stepper.setStep(1); // nee to pass index of step }