Class ObjectAutoCompleteResponseRenderer<O>
- java.lang.Object
-
- org.wicketstuff.objectautocomplete.AbstractObjectAutoCompleteRenderer<O>
-
- org.wicketstuff.objectautocomplete.ObjectAutoCompleteResponseRenderer<O>
-
- All Implemented Interfaces:
Serializable
public abstract class ObjectAutoCompleteResponseRenderer<O> extends AbstractObjectAutoCompleteRenderer<O>
A renderer, which has complete access to the list of choices and which is free to create a (more structured) drop down list. It is the responsibility of this renderer to add <li> elements with properidvalueandtextvaluesattributes reflecting- Since:
- Sep 26, 2008
- Author:
- roland
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjectAutoCompleteResponseRenderer()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidonRequest(Iterator<O> pComps, WebResponse pResponse, String pInput)Render the provided components on the given response-
Methods inherited from class org.wicketstuff.objectautocomplete.AbstractObjectAutoCompleteRenderer
getIdValue, getIdValueForObject, getTextValue, getTextValueForObject, renderChoice, renderObject, setIdProperty
-
-
-
-
Method Detail
-
onRequest
public abstract void onRequest(Iterator<O> pComps, WebResponse pResponse, String pInput)
Render the provided components on the given response- Parameters:
pComps- the components to renderpResponse- response to write topInput- input search string
-
-