It provides a user-friendly interface for displaying multiline text data.
It ensures that the text is formatted correctly for display and is easily readable by the user.
This control is ideal for scenarios where users may need to view detailed information, such as comments or descriptions.
Note
This control also serves as a view control, displaying the content from the Content Editor.
// Get display value ix.api.dom.getControl("<ELEMENT-GUID>").displayValue;
Methods
getValue
getValue(): string
Retrieve the current value of the control.
Returns string
Example
// Get value of control ix.api.dom.getControl("<ELEMENT-GUID>").getValue();
setValue
setValue(value): void
Set value of the control.
Parameters
value: string
Returns void
Example
// Set value as text ix.api.dom.getControl("<ELEMENT-GUID>").setValue("INTREXX!"); // Set value as HTML ix.api.dom.getControl("<ELEMENT-GUID>").setValue("Hey <strong>INTREXX!</strong>");
Represents a multiline text view control.
It provides a user-friendly interface for displaying multiline text data. It ensures that the text is formatted correctly for display and is easily readable by the user. This control is ideal for scenarios where users may need to view detailed information, such as comments or descriptions.
Note
This control also serves as a view control, displaying the content from the Content Editor.