Example usage for org.apache.wicket.extensions.wizard IWizardStep getView

List of usage examples for org.apache.wicket.extensions.wizard IWizardStep getView

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.wizard IWizardStep getView.

Prototype

Component getView(String id, Component parent, IWizard wizard);

Source Link

Document

Returns the current view this step is displaying.

Usage

From source file:com.googlecode.wicket.jquery.ui.widget.wizard.AbstractWizard.java

License:Apache License

@Override
public void onActiveStepChanged(IWizardStep step) {
    this.form.replace(step.getHeader(Wizard.HEADER_ID, this, this));
    this.form.replace(step.getView(Wizard.VIEW_ID, this, this));
}