I want to create Table in form

Which IIQ version are you inquiring about?

Version 8.3

Please share any other relevant files that may be required (for example, logs).

Share all details related to your problem, including any error messages you may have received.

Hi All,

I want to create dynamic table in form. I am using the below code but it is not working.

 String mainStr = "<table border=\"1\" cellpadding=\"3\" cellspacing=\"3\" width=\"100%\" style=\"word-break:break-all;\">\n" +
                "  <tr>\n" +
                "  <th>FirstName</th>\n"+
                "  <th>LastName</th>\n"+
                "  <th>Email</th>\n"+
                "  <th>NQNumber</th>\n" +
                "  <th>Entitlement</th>\n" +
                "  </tr>\n";

Form Error has been attached.

add the contentIsEscaped to true in the field where you adding the hlml, this introduced in 8.3

<Attributes>
        <Map>
          <entry key="contentIsEscaped" value="true"/>
        </Map>
      </Attributes>
1 Like

Refer the below documentation containing form examples for reference:
https://documentation.sailpoint.com/identityiq/help/forms/workflowformexample.html

As @HemantSingh suggested contentIsEscaped should fix your issue, did you try that?

Refer to this document, it contains custom form documentation from SailPoint.
https://documentation.sailpoint.com/identityiq/help/forms/specifying_custom_forms.html

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.