Uses of Class
to.etc.domui.component.input.ComboFixed

Packages that use ComboFixed
to.etc.domui.component.form   
to.etc.domui.component.input   
to.etc.domui.component.misc   
to.etc.domui.util   
 

Uses of ComboFixed in to.etc.domui.component.form
 

Methods in to.etc.domui.component.form that return ComboFixed
 ComboFixed<?> ControlBuilder.createComboFor(java.lang.Class<?> dataClass, java.lang.String property, boolean editable)
          This creates a ComboFixed for some fixed-size domain property specified by the metamodel.
<T> ComboFixed<T>
ControlBuilder.createComboFor(java.lang.Class<T> type)
          This creates a ComboFixed for some fixed-size domain class specified by type.
 ComboFixed<?> ControlBuilder.createComboFor(PropertyMetaModel<?> pmm, boolean editable)
          This creates a ComboFixed for some fixed-size domain property specified by the metamodel.
 

Uses of ComboFixed in to.etc.domui.component.input
 

Subclasses of ComboFixed in to.etc.domui.component.input
 class ComboFixedClientFilter<T>
          We use javascript to wrap addiotnal client side controls around ComboFixedClientFilter, for that we use jquery plugin: jquery.clientOptionFilter.js - client side filtering options select, author Vladimir Mijic (vmijic@execom.eu) Intended to be used for larger select boxes that need client side filtering by substring.
 

Methods in to.etc.domui.component.input that return ComboFixed
static
<T> ComboFixed<T>
ComboFixed.createCombo(IObjectToStringConverter<T> converter, T... items)
          Create a combo for a manually specified list of objects.
static
<T> ComboFixed<T>
ComboFixed.createCombo(T... items)
          Create a combo for a manually specified list of objects.
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
ComboFixed.createEnumCombo(java.lang.Class<?> base, java.lang.String property)
          Returns a combo for all of the list-of-value items for the specified property.
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
ComboFixed.createEnumCombo(java.lang.Class<?> base, java.lang.String property, T... domainvalues)
          Create a combobox having only the specified enum labels.
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
ComboFixed.createEnumCombo(java.lang.Class<T> clz)
          Create a combo for all members of an enum.
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
ComboFixed.createEnumCombo(PropertyMetaModel<?> pmm)
          Returns a combo for all of the list-of-value items for the specified property.
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
ComboFixed.createEnumCombo(PropertyMetaModel<?> pmm, T... domainvalues)
          Create a combobox having only the specified enum labels.
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
ComboFixed.createEnumCombo(T... items)
          Create a combobox having only the specified enum labels.
 

Uses of ComboFixed in to.etc.domui.component.misc
 

Methods in to.etc.domui.component.misc that return ComboFixed
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
UIControlUtil.createEnumCombo(java.lang.Class<?> base, java.lang.String property)
          Deprecated. 
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
UIControlUtil.createEnumCombo(java.lang.Class<?> base, java.lang.String property, T... domainvalues)
          Deprecated. 
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
UIControlUtil.createEnumCombo(java.lang.Class<T> clz)
          Deprecated. 
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
UIControlUtil.createEnumCombo(PropertyMetaModel<?> pmm)
          Deprecated. 
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
UIControlUtil.createEnumCombo(PropertyMetaModel<?> pmm, T... domainvalues)
          Deprecated. 
static
<T extends java.lang.Enum<T>>
ComboFixed<T>
UIControlUtil.createEnumCombo(T... items)
          Deprecated. 
 

Uses of ComboFixed in to.etc.domui.util
 

Methods in to.etc.domui.util that return ComboFixed
<T> ComboFixed<T>
MiniTableBuilder.addComboFixed(java.util.List<ValueLabelPair<T>> list)
           
<T> ComboFixed<T>
MiniTableBuilder.addComboFixed(java.lang.String label, java.util.List<ValueLabelPair<T>> list)