Description
The Web DataWindow control can now render the contents of controls in DataWindow objects as HTML.
Usage
You can include valid HTML in a control in a DataWindow object, such as a text control, column, or computed field. To render the contents of the control as HTML when the HTML for the DataWindow is generated, set the control's ValueIsHTML property to TRUE. For example, suppose a text control's text property is <I>Name</I>. The following table shows how the text is rendered in the generated HTML and displayed in a browser:
|
Value of ValueIsHTML
|
Generated HTML source
|
Output in browser
|
|
TRUE
|
<I>Name</I>
|
Name
|
|
FALSE
|
<I>Name</I>
|
<I>Name</I>
|
No validation The HTML generator does not validate the HTML you include in controls in DataWindow objects. If the HTML is invalid, the DataWindow may not display correctly. |