public interface AutocompleteProps
| Modifier and Type | Method and Description |
|---|---|
Object |
getAutocompleteList()
A collection of suggestions that will be provided to the user
|
MethodExpression |
getAutocompleteMethod()
A method which provides a list of suggestions according to a user-provided filtering value
|
MethodExpression |
getAutocompleteMethodWithOneParameter()
Workaround for RF-11469
|
int |
getMinChars()
Minimal number of chars in input to activate suggestion popup
|
AutocompleteMode |
getMode()
Determine how the suggestion list is requested:
client
pre-loads data to the client and uses the input to filter the possible suggestions
ajax
fetches suggestions with every input change using Ajax requests
lazyClient
lazy-loads data to the client and uses the input to filter the possible suggestions.
|
String |
getOnbeforedomupdate()
The client-side script method to be called after the ajax response comes back, but before the DOM is updated
|
String |
getOnbegin()
The client-side script method to be called before an ajax request.
|
String |
getOncomplete()
The client-side script method to be called after the DOM is updated
|
String |
getStatus()
Name of the request status component that will indicate the status of the Ajax request
|
String |
getVar()
A request-scope attribute via which the data object for the current row will be used when iterating
|
void |
setAutocompleteMethod(MethodExpression expression) |
void |
setAutocompleteMethodWithOneParameter(MethodExpression expression) |
AutocompleteMode getMode()
Determine how the suggestion list is requested:
Default: cachedAjax
int getMinChars()
String getVar()
Object getAutocompleteList()
String getStatus()
String getOnbegin()
String getOncomplete()
String getOnbeforedomupdate()
MethodExpression getAutocompleteMethod()
void setAutocompleteMethod(MethodExpression expression)
MethodExpression getAutocompleteMethodWithOneParameter()
void setAutocompleteMethodWithOneParameter(MethodExpression expression)
Copyright © 2020 JBoss by Red Hat. All rights reserved.