Options
Menu

Hierarchy

  • UpTextVMainControl
    • UpUriVControl

Index

Accessors

Methods

Accessors

displayValue

  • get displayValue(): string
  • Returns string

Methods

getValue

  • getValue(): string
  • Get the value of the control.

    Returns string

    The content of the controls href attribute.

setValue

  • setValue(value: any, settings?: {}): void
  • Set the value of the control.

    example
    // sets the value as text
    var uriCtrl = ix.util.getUp("[GUID]");
    uriCtrl.setValue("https://www.example.com", {asHtml: false});
    

    Parameters

    • value: any

      New URL value

    • Optional settings: {}

      Additional settings object, i.e. should the value be set asHtml (default) oder as text

      • [key: string]: any

    Returns void