Example usage for org.apache.wicket.util.value AttributeMap AttributeMap

List of usage examples for org.apache.wicket.util.value AttributeMap AttributeMap

Introduction

In this page you can find the example usage for org.apache.wicket.util.value AttributeMap AttributeMap.

Prototype

public AttributeMap() 

Source Link

Document

Constructs an empty AttributeMap.

Usage

From source file:com.servoy.j2db.server.headlessclient.dataui.WebDataRadioChoice.java

License:Open Source License

@Override
protected IValueMap getAdditionalAttributes(int index, Object choice) {
    AttributeMap attributes = new AttributeMap();
    attributes.add("onclick", "parentNode.focus()"); //$NON-NLS-1$ //$NON-NLS-2$
    return attributes;
}