input

Description

A input tag displays one (mapped to text-field) or more lines (mapped to text-pane) of text and allows that text to be edited. The multiline input element can have a horizontal scrollbar as well as a vertical scrollbar. It has also the possibility to use wordwrap.

Attributes

    backgroundcolor
    charsonline
    fontbold (not available)
    fontitalic (not available)
    fontname (not available)
    fontsize (not available)
    fontunderline (not available)
    foregroundcolor
    id (required)
    numberoflines (1)
    onchange (false)
    oncreate (false)
    ondestroy (false)
    popup
    position (center)
    scrollbar (none)
    state (enabled)
    wordwrap (false)

Children

line

Description of attributes

charsonline

Specifies the number of chars that should be showed on one line of text. When not specified the language specific default is used.

numberoflines

Specifies the height of the input element in number of lines. The default value is 1.

onchange

Specifies whether an entry in the codeframe of the window should be created to handle an onchange event of this element. Allowed values are true and false. The default value is false.

scrollbar

Scrollbars are only possible for multiline input (numberoflines > 1). Specifies where the input element should have scrollbars. Possible values are "none" for no scrollbars, "vertical" for a vertical scrollbar, "horizontal" for a horizontal scrollbar and "both" for a horizontal and vertical scrollbars. The default value is none, although AppBuilder seems to create a vertical scrollbar anyway.

wordwrap

Wordwrap is only possible for multiline input. Specifies whether or not the input element should use wordwrap. Allowed values are "true" and "false". The default is false.