Sun Identity Manager Deployment Reference

Html

Allows you to insert arbitrary HTML markup into a form field or other component contained within an HTML page, including JavaScript.

This component contains one property: html, which allows you to specify the string(s) that are rendered into the page.

Example

<Display class=’Html’>
   <Property name=’html’>
       <concat>
         <s><![CDATA[<div class="DashAlrtMsgTxt">]]></s>
         <ref>loginWarning</ref>
         <s><![CDATA[&nbsp;<a href=’]]></s>
         <s>user/changePassword.jsp</s>
         <s><![CDATA[’>]]></s>
         <message name=’UI_USER_MAIN_CLICK_HERE_INTRO’/>
         <s><![CDATA[</a>]]></s>
         <message name=’UI_USER_MAIN_CLICK_HERE_REMAINDER’/>
         <s><![CDATA[</div>]]></s>
       </concat>
   </Property>
</Display>