Function inText

  • Creates control for the given textual input element.

    Note that this won't work for files, checkboxes, or radio buttons.

    For <select multiple> this would only reflect the first option. Consider to use inSelect() for multi-selects.

    Parameters

    • element: Element

      Target text input element.

    • aspects: {
          aspects?: Aspect<string, string> | readonly Aspect<string, string>[];
      } = {}

      Input aspects applied by default. These are aspect converters to constructed control from the same-valued one.

      • Optional Readonly aspects?: Aspect<string, string> | readonly Aspect<string, string>[]

    Returns InText

    New textual input control instance.

Generated using TypeDoc