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

The base web element contains all the shared attributes supported by all UIX Components HTML beans.

Syntax
<base
    [ id="Name" ]
    [ onClick="string" ]
    [ onDoubleClick="string" ]
    [ onKeyDown="string" ]
    [ onKeyPress="string" ]
    [ onKeyUp="string" ]
    [ onMouseDown="string" ]
    [ onMouseMove="string" ]
    [ onMouseOut="string" ]
    [ onMouseOver="string" ]
    [ onMouseUp="string" ]
    [ shortDesc="string" ]
    [ styleClass="string" ]
    [ data:inlineStyle ="data binding to oracle.cabo.style.Style" ]
>
   <inlineStyle></inlineStyle>
</base>

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.
  • Attributes starting with "data:" are really elements for which there is an attribute syntax available. The "data:" indicates that the attribute syntax cannot be used without databinding.

  • Description

    The base web element contains all the shared attributes supported by all UIX Components HTML beans.


    Attributes

    Description Type
    id the page-wide unique client ID of this node. The string must comply with the XML id specification --namely it must begin with a [a-z][A-z] and after that can contain as many of [a-z][A-Z][0-9][._-:] as desired. This property is typically only needed when writing client-side JavaScript.
    Name
    onClick an onclick Javascript handler.
    string
    onDoubleClick an ondoubleclick Javascript handler.
    string
    onKeyDown an onkeydown Javascript handler.
    string
    onKeyPress an onkeypress Javascript handler.
    string
    onKeyUp an onkeyup Javascript handler.
    string
    onMouseDown an onmousedown Javascript handler.
    string
    onMouseMove an onmousemove Javascript handler.
    string
    onMouseOut an onmouseout Javascript handler.
    string
    onMouseOver an onmouseover Javascript handler.
    string
    onMouseUp an onmouseup Javascript handler.
    string
    shortDesc the short description of the bean. This text is commonly used by user agents to display tooltip help text.
    string
    styleClass the CSS style class of the bean.
    string

    Child Elements

    Description Required? Maximum
    <inlineStyle> A definition of the inline CSS style for this element.
    No 1