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

Packages that use IInputNode
to.etc.domui.component.form   
to.etc.domui.component.htmleditor   
to.etc.domui.component.input   
to.etc.domui.component.lookup   
to.etc.domui.dom.html   
to.etc.domui.util   
 

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

Methods in to.etc.domui.component.form with type parameters of type IInputNode
<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.
<X extends NodeBase & IInputNode<?>>
ILookupControlFactory
ControlBuilder.getLookupQueryFactory(SearchPropertyMetaModel pmm, X control)
           
 

Constructors in to.etc.domui.component.form with parameters of type IInputNode
ControlFactoryResult(IInputNode<C> control, IReadOnlyModel<M> model, PropertyMetaModel<C> pmm)
           
SimpleComponentPropertyBinding(IReadOnlyModel<?> model, PropertyMetaModel<T> propertyMeta, IInputNode<T> control)
           
 

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

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

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

Classes in to.etc.domui.component.input that implement IInputNode
 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>.
 

Constructors in to.etc.domui.component.input with parameters of type IInputNode
SimpleBinder(IInputNode<?> control)
           
 

Uses of IInputNode in to.etc.domui.component.lookup
 

Methods in to.etc.domui.component.lookup with type parameters of type IInputNode
<X extends IInputNode<?>>
int
ILookupControlFactory.accepts(SearchPropertyMetaModel pmm, X control)
          Returns >=0 if this can create a lookup instance for a property.
<X extends NodeBase & IInputNode<?>>
LookupForm.Item
LookupForm.addManual(java.lang.String property, X control)
          Add a manually created control and link it to some property.
<X extends IInputNode<?>>
ILookupControlInstance
ILookupControlFactory.createControl(SearchPropertyMetaModel spm, X control)
           
<X extends NodeBase & IInputNode<?>>
ILookupControlFactory
LookupControlRegistry.getLookupQueryFactory(SearchPropertyMetaModel pmm, X control)
           
 

Constructors in to.etc.domui.component.lookup with parameters of type IInputNode
EqLookupControlImpl(java.lang.String property, IInputNode<?> n)
           
 

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

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

Uses of IInputNode in to.etc.domui.util
 

Methods in to.etc.domui.util with parameters of type IInputNode
static
<T> T
DomUtil.getValueSafe(IInputNode<T> node)