Manual Reference Source
public class | source

StepActions

Extends:

react~Component → StepActions

StepActions component is interface for components implementing step actions for WizardModal

Access

Stage.Basic.Wizard.Step.Actions

Static Member Summary

Static Public Members
public static

Static Public Members

public static propTypes: * source

Properties:

NameTypeAttributeDescription
id string

step ID

onClose function

function calling wizard to close

onStartOver function

function calling wizard to start over wizard process

onPrev function

function calling wizard to move to the previous step

onNext function

function calling wizard to move to the next step

onError function

function setting wizard in error state

onLoading function

function setting wizard in loading state

onReady function

function setting wizard in ready state

fetchData function

function providing step data from step content

wizardData Object

wizard data object

toolbox Object

Toolbox object

disabled boolean
  • optional
  • default: false

if set then action buttons will be disabled

startOverLabel string
  • optional
  • default: 'Start Over'

label for Start Over button

startOverIcon string
  • optional
  • default: 'undo'

icon to be added to Start Over button

showStartOver boolean
  • optional
  • default: false

if set to true, then Start Over button will be shown

resetDataOnStartOver boolean
  • optional
  • default: false

if set to true, then wizard data will be reset on Start Over button click

prevLabel string
  • optional
  • default: 'Back'

label for Back button

prevIcon string
  • optional
  • default: 'arrow left'

icon to be added to Back button

showPrev boolean
  • optional
  • default: true

if set to true, then Back button will be shown

nextLabel string
  • optional
  • default: 'Next'

label for Next button

nextIcon string
  • optional
  • default: 'arrow right'

icon to be added to Next button

showNext boolean
  • optional
  • default: true

if set to true, then Next button will be shown