Interface SelectItemsFilteredTagDeclaration
- All Superinterfaces:
HasBinding
,HasId
,HasItemLabel
The selectItemsFiltered component is based on UISelectItems but with a query attribute for server-side filtering.
When used in tc:selectOneList or tc:selectManyList, the
HasFilter.setFilter(java.lang.String)
/HasFilter.setFilter(java.lang.String)
attribute is ignored.- Since:
- 6.8.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Time in milliseconds before the list will be requested (by AJAX).void
setItemDisabled
(String itemDisabled) Flag indicating whether the option created by this component is disabled.void
setItemValue
(String itemValue) Value to be returned to the server if this option is selected by the user.void
setMinimumCharacters
(String minimumCharacters) Minimum number of characters to type before the list will be requested.void
The query is the string typed by the user.void
Value binding expression pointing at a List or array of SelectItem instances containing the information for this option.void
Name of a variable under which the iterated data will be exposed.Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding
setBinding
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasItemLabel
setItemLabel
-
Method Details
-
setValue
Value binding expression pointing at a List or array of SelectItem instances containing the information for this option. -
setVar
Name of a variable under which the iterated data will be exposed. It may be referred to in EL of other attributes. -
setItemDisabled
Flag indicating whether the option created by this component is disabled. -
setItemValue
Value to be returned to the server if this option is selected by the user. -
setQuery
The query is the string typed by the user. It is intended to filter the result list. -
setDelay
Time in milliseconds before the list will be requested (by AJAX). -
setMinimumCharacters
Minimum number of characters to type before the list will be requested.
-