Uses of Interface
to.etc.domui.dom.html.IControl

Packages that use IControl
to.etc.domui.component.form   
to.etc.domui.component.htmleditor   
to.etc.domui.component.input   
to.etc.domui.dom.html   
 

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

Classes in to.etc.domui.component.form that implement IControl
 class DisplayOnlyPropertyBinding<T>
          A property binding specific for display-only controls.
 class SimpleComponentPropertyBinding<T>
           
 

Methods in to.etc.domui.component.form that return IControl
 IControl<?> GenericFormBuilder.addDisplayProp(java.lang.String name)
          Add a display-only field for the specified property.
 IControl<?> GenericFormBuilder.addDisplayProp(java.lang.String name, java.lang.String label)
          Add an input for the specified property just as addProp(String, String), only this input won't be editable (ever).
<V,T extends NodeBase & IDisplayControl<V>>
IControl<V>
GenericFormBuilder.addDisplayProp(java.lang.String propertyname, T ctl)
           
 IControl<?>[] GenericFormBuilder.addDisplayProps(java.lang.String... names)
          Add the specified properties to the form as display-only properties, in the current mode.
protected abstract  IControl<?>[] GenericFormBuilder.addListOfProperties(boolean editable, java.lang.String... names)
          Handle placement of a list of property names, all obeying the current mode in effect.
protected  IControl<?>[] OldHorizontalFormBuilder.addListOfProperties(boolean editable, java.lang.String... names)
          Deprecated.  
protected  IControl<?>[] TabularFormBuilder.addListOfProperties(boolean editable, java.lang.String... names)
          Handle placement of a list of property names, all obeying the current mode in effect.
protected  IControl<?>[] HorizontalFormBuilder.addListOfProperties(boolean editable, java.lang.String... names)
           
 IControl<?> GenericFormBuilder.addProp(java.lang.String name)
          Add an input for the specified property.
 IControl<?> GenericFormBuilder.addProp(java.lang.String name, boolean editable)
          Add an input for the specified property.
 IControl<?> GenericFormBuilder.addProp(java.lang.String name, boolean editable, boolean mandatory)
          Add an input for the specified property.
 IControl<?> GenericFormBuilder.addProp(java.lang.String name, java.lang.String label)
          Add an input for the specified property.
 IControl<?> GenericFormBuilder.addProp(java.lang.String name, java.lang.String label, boolean editable, boolean mandatory)
          Add an input for the specified property.
<V,T extends NodeBase & IInputNode<V>>
IControl<V>
GenericFormBuilder.addProp(java.lang.String name, java.lang.String label, T ctl)
          Add a user-specified control for a given property.
<V,T extends NodeBase & IInputNode<V>>
IControl<V>
GenericFormBuilder.addProp(java.lang.String propertyname, T ctl)
          Add a user-specified control for a given property.
protected  IControl<?> GenericFormBuilder.addPropertyControl(java.lang.String name, java.lang.String label, PropertyMetaModel<?> pmm, boolean editable)
           
 IControl<?>[] GenericFormBuilder.addProps(java.lang.String... names)
          Add the specified properties to the form, in the current mode.
 IControl<?> OldHorizontalFormBuilder.addPropWithSpan(java.lang.String name, boolean readOnly, boolean mandatory, int colSpan)
          Deprecated. Enable adding of field into table cell with possibility to customize colspan.
 IControl<?> OldHorizontalFormBuilder.addPropWithSpan(java.lang.String name, java.lang.String label, boolean readOnly, boolean mandatory, int colSpan)
          Deprecated. Enable adding of field into table cell with possibility to customize colspan.
 IControl<?> ControlFactoryResult.getFormControl()
           
 

Constructors in to.etc.domui.component.form with parameters of type IControl
ControlFactoryResult(IControl<?> handle, NodeBase[] nodeList, NodeBase labelNode, IModelBinding binding)
           
ControlFactoryResult(IModelBinding binding, IControl<?> fc, NodeBase control)
           
 

Uses of IControl in to.etc.domui.component.htmleditor
 

Classes in to.etc.domui.component.htmleditor that implement IControl
 class FCKEditor
          This represents a FCKEditor instance.
 class HtmlEditor
          This is a small but very fast html editor.
 

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

Classes in to.etc.domui.component.input that implement IControl
 class AbstractDivControl<T>
          Abstract base class for a control that is implemented on top of a DIV.
 class ComboComponentBase<T,V>
           
 class ComboFixed<T>
          Simple combobox handling [String, Object] pairs where the string is the presented label value and the Object represents the values selected.
 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.
 class ComboLookup<T>
          Combobox component where the list type is the same as the value type, i.e.
 class DateInput
          Date input component: this is an INPUT component with a button attached; pressing the button shows a calendar which can be used to enter a date.
 class HiddenText<T>
          The input type="password" component.
 class LookupInput<T>
          Lookup input field component.
 class SelectBasedControl<T>
          Deprecated. 
 class SpanBasedControl<T>
          Deprecated. 
 class Text<T>
          A single-line input box.
 class TextStr
          Shortcut class for Text<String>.
 

Uses of IControl in to.etc.domui.dom.html
 

Subinterfaces of IControl in to.etc.domui.dom.html
 interface IInputNode<T>
          Generic representation of a control, having input and some state.
 

Classes in to.etc.domui.dom.html that implement IControl
 class Checkbox
           
 class TextArea