Interface SelectItemsFilteredTagDeclaration

All Superinterfaces:
HasBinding, HasId, HasItemLabel

public interface SelectItemsFilteredTagDeclaration extends HasId, HasBinding, 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 Type
    Method
    Description
    void
    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.HasId

    setId

    Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasItemLabel

    setItemLabel
  • Method Details

    • setValue

      void setValue(String value)
      Value binding expression pointing at a List or array of SelectItem instances containing the information for this option.
    • setVar

      void setVar(String var)
      Name of a variable under which the iterated data will be exposed. It may be referred to in EL of other attributes.
    • setItemDisabled

      void setItemDisabled(String itemDisabled)
      Flag indicating whether the option created by this component is disabled.
    • setItemValue

      void setItemValue(String itemValue)
      Value to be returned to the server if this option is selected by the user.
    • setQuery

      void setQuery(String query)
      The query is the string typed by the user. It is intended to filter the result list.
    • setDelay

      void setDelay(String delay)
      Time in milliseconds before the list will be requested (by AJAX).
    • setMinimumCharacters

      void setMinimumCharacters(String minimumCharacters)
      Minimum number of characters to type before the list will be requested.