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