ionic-stepper icon indicating copy to clipboard operation
ionic-stepper copied to clipboard

Manual Envoke .nextStep() from Ionic Page

Open crippy opened this issue 6 years ago • 3 comments

crippy avatar Apr 02 '18 16:04 crippy

Hi... Just wanted to check if there is a way to invoke nextStep from the methods in .ts backing component ?

vbhanuc87 avatar May 05 '18 17:05 vbhanuc87

Hi... Just wanted to check if there is a way to invoke nextStep from the methods in .ts backing component ?

yes

shdehnavi avatar Dec 06 '18 11:12 shdehnavi

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 }

stepupithub avatar Oct 22 '19 11:10 stepupithub