|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.click.control.AbstractControl org.apache.click.control.Field org.apache.click.control.TextField org.apache.click.extras.control.AutoCompleteTextField
public abstract class AutoCompleteTextField
Provides an Auto Complete Text Field control: <input type='text'>.
Text Field |
AutoCompleteTextField nameField = new AutoCompleteTextField("name") { public List getAutoCompleteList(String criteria) { return getCustomerService().getCustomerNamesLike(criteria); } }; form.add(nameField);
Field Summary | |
---|---|
protected String |
autoCompleteOptions
The JavaScript 'script.aculo.us' Autocompleter initialization options, default value is: minChars:1. |
protected Behavior |
behavior
The Field Ajax Behavior provides autocomplete support. |
protected Map<String,Object> |
parameters
Additional parameters to send to server. |
Fields inherited from class org.apache.click.control.TextField |
---|
maxLength, minLength, size, VALIDATE_TEXTFIELD_FUNCTION |
Fields inherited from class org.apache.click.control.Field |
---|
disabled, error, focus, form, help, label, labelStyle, labelStyleClass, parentStyleClassHint, parentStyleHint, readonly, required, tabindex, title, trim, validate, value |
Fields inherited from class org.apache.click.control.AbstractControl |
---|
actionListener, attributes, behaviors, headElements, listener, listenerMethod, messages, name, parent, styles |
Fields inherited from interface org.apache.click.Control |
---|
CONTROL_MESSAGES |
Constructor Summary | |
---|---|
AutoCompleteTextField()
Create a AutoCompleteTextField with no name defined. |
|
AutoCompleteTextField(String name)
Construct the AutoCompleteTextField with the given name. |
|
AutoCompleteTextField(String name,
boolean required)
Construct the AutoCompleteTextField with the given name and required status. |
|
AutoCompleteTextField(String name,
String label)
Construct the AutoCompleteTextField with the given name and label. |
|
AutoCompleteTextField(String name,
String label,
boolean required)
Construct the AutoCompleteTextField with the given name, label and required status. |
|
AutoCompleteTextField(String name,
String label,
int size)
Construct the AutoCompleteTextField with the given name, label and size. |
Method Summary | |
---|---|
void |
addBehavior(Behavior behavior)
This method is not supported and throws an UnsupportedOperationException if invoked. |
protected Behavior |
createBehavior()
Create the field Ajax behavior instance. |
abstract List<?> |
getAutoCompleteList(String criteria)
Return the list of suggested values for the given search criteria. |
String |
getAutoCompleteOptions()
Return the JavaScript 'script.aculo.us' Autocompleter initialization options, default value is "minChars:1". |
protected Behavior |
getBehavior()
Return the field internal Ajax behavior instance. |
List<Element> |
getHeadElements()
Return the list of HEAD elements
(resources) to be included in the page. |
Map<String,Object> |
getParameters()
Return this field map of additional parameters. |
boolean |
hasParameters()
Return true if this field has additional parameters, false otherwise. |
void |
onInit()
Register the field with the parent page to intercept POST autocompletion requests. |
void |
removeBehavior(Behavior behavior)
This method is not supported and throws an UnsupportedOperationException if invoked. |
void |
render(HtmlStringBuffer buffer)
Render the HTML representation of the AutoCompleteTextField. |
protected void |
renderAutoCompleteList(HtmlStringBuffer buffer,
List<?> autoCompleteList)
Render the suggested auto completion list to the servlet response. |
void |
setAutoCompleteOptions(String options)
Set the JavaScript 'script.aculo.us' Autocompleter initialization options, default value is: minChars:1. |
void |
setParameter(String name,
Object value)
Set the field parameter with the given parameter name and value. |
Methods inherited from class org.apache.click.control.TextField |
---|
getControlSizeEst, getMaxLength, getMinLength, getSize, getTag, getType, getValidationJavaScript, setMaxLength, setMinLength, setSize, validate |
Methods inherited from class org.apache.click.control.Field |
---|
bindRequestValue, getError, getErrorLabel, getFocus, getFocusJavaScript, getForm, getHelp, getId, getLabel, getLabelStyle, getLabelStyleClass, getParentStyleClassHint, getParentStyleHint, getRequestValue, getState, getTabIndex, getTextAlign, getTitle, getValidate, getValue, getValueObject, getWidth, isDisabled, isHidden, isReadonly, isRequired, isTrim, isValid, onProcess, removeState, renderTagBegin, restoreState, saveState, setDisabled, setError, setErrorMessage, setErrorMessage, setFocus, setForm, setHelp, setLabel, setLabelStyle, setLabelStyleClass, setListener, setParent, setParentStyleClassHint, setParentStyleHint, setReadonly, setRequired, setState, setTabIndex, setTextAlign, setTitle, setTrim, setValidate, setValue, setValueObject, setWidth |
Methods inherited from class org.apache.click.control.AbstractControl |
---|
addStyleClass, appendAttributes, dispatchActionEvent, getActionListener, getAttribute, getAttributes, getBehaviors, getContext, getHtmlImports, getMessage, getMessage, getMessages, getName, getPage, getParent, getStyle, getStyles, hasAttribute, hasAttributes, hasBehaviors, hasStyles, isAjaxTarget, onDeploy, onDestroy, onRender, removeStyleClass, renderTagEnd, setActionListener, setAttribute, setId, setName, setStyle, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected String autoCompleteOptions
protected Map<String,Object> parameters
id
is always sent as a parameter to the server in order
for Click to identify the field.
protected Behavior behavior
Constructor Detail |
---|
public AutoCompleteTextField(String name)
name
- the name of the fieldpublic AutoCompleteTextField(String name, boolean required)
name
- the name of the fieldrequired
- the field required statuspublic AutoCompleteTextField(String name, String label)
name
- the name of the fieldlabel
- the label of the fieldpublic AutoCompleteTextField(String name, String label, boolean required)
name
- the name of the fieldlabel
- the label of the fieldrequired
- the field required statuspublic AutoCompleteTextField(String name, String label, int size)
name
- the name of the fieldlabel
- the label of the fieldsize
- the size of the fieldpublic AutoCompleteTextField()
Method Detail |
---|
public abstract List<?> getAutoCompleteList(String criteria)
criteria
- the search criteria
public String getAutoCompleteOptions()
public void setAutoCompleteOptions(String options)
public void onInit() { AutoCompleteTextField cityField = new AutoCompleteTextField("cityField"); field.setAutoCompleteOptions("minChars:1, frequency: 0.6"); }Please note: to send additional request parameters use
setParameter(java.lang.String, java.lang.Object)
instead
options
- the JavaScript Autocompleter initialization optionspublic boolean hasParameters()
public Map<String,Object> getParameters()
public void setParameter(String name, Object value)
public void onInit() { AutoCompleteTextField cityField = new AutoCompleteTextField("cityField"); cityField.setParameter(stateField.getName(), stateField.getValue()); }
name
- the attribute namevalue
- the attribute valuepublic List<Element> getHeadElements()
elements
(resources) to be included in the page. The resources are:
getHeadElements
in interface Control
getHeadElements
in class AbstractControl
IllegalStateException
- if the field's name has not been set or
if the field is not attached to the PageControl.getHeadElements()
public void render(HtmlStringBuffer buffer)
render
in interface Control
render
in class TextField
buffer
- the specified buffer to render the control's output toAbstractControl.toString()
public void onInit()
onInit
in interface Control
onInit
in class AbstractControl
Control.onInit()
public void addBehavior(Behavior behavior)
addBehavior
in class AbstractControl
behavior
- the behavior to add
UnsupportedOperationException
- this field uses an internal behavior
insteadpublic void removeBehavior(Behavior behavior)
removeBehavior
in class AbstractControl
behavior
- the behavior to add
UnsupportedOperationException
- if invokedprotected Behavior getBehavior()
protected Behavior createBehavior()
protected void renderAutoCompleteList(HtmlStringBuffer buffer, List<?> autoCompleteList)
autoCompleteList
- the suggested list of auto completion values
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |