Example usage for org.apache.wicket.markup.html.form Button getForm

List of usage examples for org.apache.wicket.markup.html.form Button getForm

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form Button getForm.

Prototype

@Override
public Form<?> getForm() 

Source Link

Document

Override to not throw exception if there is no parent form.

Usage

From source file:com.zh.snmp.snmpweb.components.RightGoAndClearFilter.java

License:Open Source License

@Override
protected void onClearSubmit(Button button) {
    button.getForm().clearInput();
    super.onClearSubmit(button);
}