View control of URI (Uniform Resource Identifier) values.
Returns the value displayed to the user. It's not always the value which was saved.
Therefor use getValue.
// Get display valueix.api.dom.getControl("<ELEMENT-GUID>").displayValue; Copy
// Get display valueix.api.dom.getControl("<ELEMENT-GUID>").displayValue;
Retrieve the current value of the control.
// Get value of controlix.api.dom.getControl("<ELEMENT-GUID>").getValue(); Copy
// Get value of controlix.api.dom.getControl("<ELEMENT-GUID>").getValue();
Set the value of the control.
ix.api.dom.getControl("<ELEMENT-GUID>").setValue("https://intrexx.com"); Copy
ix.api.dom.getControl("<ELEMENT-GUID>").setValue("https://intrexx.com");
View control of URI (Uniform Resource Identifier) values.