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

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

Introduction

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

Prototype

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

Source Link

Document

Gets the header component for this step.

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));
}