|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.click.control.AbstractControl net.sf.click.control.Field net.sf.click.control.TextField net.sf.click.extras.control.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);
This control uses the JavaScript 'script.aculo.us' Ajax.Autocompleter class.
See also the W3C HTML reference: INPUT
Field Summary | |
protected String |
autoCompleteOptions
The JavaScript 'script.aculo.us' Autocompleter initialization options, default value is: {minChars:1}. |
static String |
HTML_IMPORTS
The JavaScript sorting HTML import statements. |
Fields inherited from class net.sf.click.control.TextField |
maxLength, minLength, size, VALIDATE_TEXTFIELD_FUNCTION |
Fields inherited from class net.sf.click.control.Field |
disabled, error, focus, form, help, label, readonly, required, tabindex, title, validate, value |
Fields inherited from class net.sf.click.control.AbstractControl |
actionListener, attributes, listener, listenerMethod, messages, name, parent, styles |
Fields inherited from interface net.sf.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 | |
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: {}. |
String |
getHtmlImports()
Return the HTML CSS and JavaScript includes. |
void |
onDeploy(ServletContext servletContext)
Deploys the controls static CSS and JavaScript resources. |
void |
onInit()
Register the field with the parent page to intercept POST autocompletion requests. |
boolean |
onProcess()
Process the page request and if an auto completion POST request then render an list of suggested values. |
void |
render(HtmlStringBuffer buffer)
Render the HTML representation of the AutoCompleteTextField. |
protected void |
renderAutoCompleteList(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 |
setParent(Object parent)
|
Methods inherited from class net.sf.click.control.TextField |
getControlSizeEst, getMaxLength, getMinLength, getSize, getTag, getType, getValidationJavaScript, setMaxLength, setMinLength, setSize, validate |
Methods inherited from class net.sf.click.control.Field |
bindRequestValue, getError, getErrorLabel, getFocus, getFocusJavaScript, getForm, getHelp, getId, getLabel, getRequestValue, getTabIndex, getTextAlign, getTitle, getValidate, getValue, getValueObject, getWidth, isDisabled, isHidden, isReadonly, isRequired, isValid, setDisabled, setError, setErrorMessage, setErrorMessage, setErrorMessage, setErrorMessage, setFocus, setForm, setHelp, setLabel, setListener, setReadonly, setRequired, setTabIndex, setTextAlign, setTitle, setValidate, setValue, setValueObject, setWidth |
Methods inherited from class net.sf.click.control.AbstractControl |
addStyleClass, appendAttributes, getActionListener, getAttribute, getAttributes, getContext, getMessage, getMessage, getMessage, getMessages, getName, getPage, getParent, getStyle, getStyles, hasAttribute, hasAttributes, hasStyles, onDestroy, onRender, registerActionEvent, removeStyleClass, renderTagBegin, 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 |
public static final String HTML_IMPORTS
protected String autoCompleteOptions
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"); HtmlStringBuffer buffer = new HtmlStringBuffer(); buffer.append("{"); // Options opens with squiggly bracket buffer.append(stateField.getName()); buffer.append("="); buffer.append(stateField.getValue()); buffer.append("&"); buffer.append(idField.getName()); buffer.append("="); buffer.append(idField.getValue()); buffer.append("}"); // Options closes with squiggly bracket field.setAutoCompleteOptions(options.toString()); }Note that you can add any of the options specified on the Ajax-AutoCompleter wiki.
options
- the JavaScript Autocompleter initialization optionspublic void setParent(Object parent)
parent
- the parent of the Control
IllegalStateException
- if AbstractControl.name
is not defined
IllegalArgumentException
- if the given parent instance is
referencing this object: if (parent == this)Field.setParent(Object)
public String getHtmlImports()
Control.getHtmlImports()
public void render(HtmlStringBuffer buffer)
buffer
- the specified buffer to render the control's output toAbstractControl.toString()
public void onInit()
Control.onInit()
public boolean onProcess()
Control.onProcess()
public void onDeploy(ServletContext servletContext)
servletContext
- the contextAbstractControl.onDeploy(javax.servlet.ServletContext)
protected void renderAutoCompleteList(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 |