Example usage for org.apache.wicket.ajax.markup.html.form AjaxSubmitLink get

List of usage examples for org.apache.wicket.ajax.markup.html.form AjaxSubmitLink get

Introduction

In this page you can find the example usage for org.apache.wicket.ajax.markup.html.form AjaxSubmitLink get.

Prototype

@Override
public final Component get(String path) 

Source Link

Document

Get a child component by looking it up with the given path.

Usage

From source file:org.opengeo.data.importer.web.ImportDataPage.java

License:Open Source License

void resetNextButton(AjaxSubmitLink next, AjaxRequestTarget target) {
    next.add(new AttributeModifier("class", true, new Model("")));
    next.setEnabled(true);//from  w ww.  j ava2s .c o m
    next.get(0).setDefaultModelObject("Next");
    target.addComponent(next);
}