New to Kendo UI for Angular? Start a free 30-day trial
StepPredicateFn
Represents the callback used by the isValid
and validate
properties of a step.
Receives the index of the step as an argument.
We recommend using an arrow function for the callback to capture the this
execution context of the current class.
ts
stepCallback = (index: number): boolean => {
return index === 3;
}