Example usage for org.apache.wicket.markup.html.panel Panel getMarkupId

List of usage examples for org.apache.wicket.markup.html.panel Panel getMarkupId

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.panel Panel getMarkupId.

Prototype

public String getMarkupId(boolean createIfDoesNotExist) 

Source Link

Document

Retrieves id by which this component is represented within the markup.

Usage

From source file:$.ModalLink.java

License:Apache License

public ModalLink(String id, Panel bootstrapModalPanel) {
        this(id, bootstrapModalPanel.getMarkupId(true));
    }

From source file:br.com.digilabs.wicket.bootstrap.BootstrapModalLink.java

License:Apache License

public BootstrapModalLink(String id, Panel bootstrapModalPanel) {
    this(id, bootstrapModalPanel.getMarkupId(true));
}