<formElement> Element
Derived from: <ui:base> element
Group: UIX Components

Common superclass for beans that define form elements.

Syntax
<formElement
      name="Name"
    [ disabled="boolean" ]
    [ onBlur="string" ]
    [ onFocus="string" ]
    [ readOnly="boolean" ]
>
   <contents> <!-- indexed children --> </contents>
</formElement>

Syntax Notes:
  • This is an abstract element. It cannot actually be used directly, but exists to contain attributes shared among all elements derived from it.
  • This element can also have all the attributes and child elements of the element from which it is derived.

  • Description

    Common superclass for beans that define form elements.


    Attributes

    Description Type
    disabled whether the element is disabled.
    boolean
    name the name used to identify the element in client-to-client or client-to-server events.  Required.
    Name
    onBlur the event handler for when the element loses focus.
    string
    onFocus the event handler for when the element receives focus.
    string
    readOnly whether the element is read-only.
    boolean

    Child Elements

    Description Required? Maximum
    <contents> Indexed children of the bean
    No 1