| Package | com.vmware.ui.wizard |
| Class | public class AppWizard |
| Inheritance | AppWizard Wizard flash.events.EventDispatcher |
WARNING: This API is deprecated after SDK 5.5, it may not be supported in future releases.
| Property | Defined By | ||
|---|---|---|---|
![]() | busy : Boolean
The current busy state of the wizard. | Wizard | |
![]() | busyMessage : String
The message that appears when the wizard is in busy state. | Wizard | |
![]() | container : IWizardContainer
The wizard container. | Wizard | |
![]() | currentPageInfo : PageInfo
The PageInfo for the current front page,
or null if the wizard has no pages. | Wizard | |
![]() | firstPageInfo : PageInfo [read-only]
Returns the PageInfo corresponding to the first
non-skipped page, or null if none. | Wizard | |
![]() | forwardButtonAlwaysEnabled : Boolean
Specifies the behavior of the next and finish buttons in the wizard:
If the value is true then the next button will be always enabled. | Wizard | |
![]() | hasNextPage : Boolean [read-only]
Indicates whether a next page exists. | Wizard | |
![]() | hasPreviousPage : Boolean [read-only]
Indicates whether a previous page exists. | Wizard | |
| helpURL : String [write-only]
Sets the URL to open in the browser when clicking on the "?" icon in the top
right corner of the wizard window. | AppWizard | ||
![]() | includePageNavigator : Boolean
Whether to include a page navigation control that
can be used to activate individual pages. | Wizard | |
![]() | isFinishButtonEnabled : Boolean [read-only]
Tests whether the wizard can be finished. | Wizard | |
![]() | nextPageInfo : PageInfo [read-only]
Returns the next PageInfo (i.e the one you will go if you
call showNextPage), or null if none. | Wizard | |
![]() | pagesInfo : ArrayCollection
The PageInfo objects of this wizard's pages. | Wizard | |
![]() | previousPageInfo : PageInfo [read-only]
Returns the previous PageInfo, or null if none. | Wizard | |
![]() | validationOnForwardOnly : Boolean
Whether the Wizard is configured for validation on just forward navigation. | Wizard | |
| Method | Defined By | ||
|---|---|---|---|
AppWizard(wizardContainer:IWizardContainer = null)
Creates a new application Wizard instance. | AppWizard | ||
![]() | dispose():void | Wizard | |
![]() | getPageInfo(page:UIComponent):PageInfo
Returns the PageInfo for the given page
component. | Wizard | |
![]() | showNextPage():void
Shows the next page in the wizard. | Wizard | |
| helpURL | property |
helpURL:String [write-only] Sets the URL to open in the browser when clicking on the "?" icon in the top right corner of the wizard window.
By default the "?" icon points to the vSphere Client help pages, but you can hide that icon by calling tiwoEvent.features.removeFeature(TiwoFeatures.HELP)
public function set helpURL(value:String):void| AppWizard | () | Constructor |
public function AppWizard(wizardContainer:IWizardContainer = null)
Creates a new application Wizard instance.
wizardContainer:IWizardContainer (default = null) — The IWizardContainer implementation to
be used within in this Wizard.
|