Atozed Forums

Full Version: Apply only a template to one component on a form
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All,

Is it possible to apply a template to just one component on a form?
Like to an IWText component:

<div id="Textelement">
  <p>some text</p>
  <ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
  </ul>
  <p>Some text here</p>
</div>

The rest on the form should remain intact.
If you just want to output snippets of HTML, set the .RawText property to true and then just put that HTML int he Caption property.
(12-22-2020, 07:43 PM)kudzu Wrote: [ -> ]If you just want to output snippets of HTML, set the .RawText property to true and then just put that HTML int he Caption property.

I think Chad is talking about an IWLabel here.  Set .RawText to true and .Caption is for html you want passed without change.

I haven't tried with with IWEdit, could be that passes a result back.

Dan
Yes, IWLabel. Thanks for the clarification.