View control of URI (Uniform Resource Identifier) values.

Hierarchy

  • UpTextVMainControl
    • URI

Properties

Accessors

Methods

Properties

element: HTMLAnchorElement

Accessors

  • get displayValue(): string
  • Returns the value displayed to the user. It's not always the value which was saved.

    Therefor use getValue.

    Returns string

    Example

    // Get display value
    ix.api.dom.getControl("<ELEMENT-GUID>").displayValue;

Methods

  • Retrieve the current value of the control.

    Returns string

    Example

    // Get value of control
    ix.api.dom.getControl("<ELEMENT-GUID>").getValue();
  • Set the value of the control.

    Parameters

    • value: string

    Returns void

    Example

    ix.api.dom.getControl("<ELEMENT-GUID>").setValue("https://intrexx.com");