The CreatorCon Call for Content is officially open! Get started here.

HTML field is not rendering as table

Priyanka125
Tera Contributor

Hello Experts,

I need to show some details in table format, for that i have created a HTML field on Incident form and in that field i have added below value and save the form:

<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>

after saving incident form, HTML field still show HTML code as mentioned above it does not render html view (in table format).Please help me to understand  if i have done anything wrong.

Thanks,

Priyanka

1 ACCEPTED SOLUTION

Can you try:

  1. Navigate to System Properties > UI Properties.
  2. Locate the property called HTML field editor to use (glide.ui.html.editor).
  3. Select TinyMCE
  4. Click Save.

View solution in original post

27 REPLIES 27

My response mentioning the property:

 

Your copy:

 

You mention the same property already mentioned 3,5 hours before... i don't think that is helpful.

no it will not impact if you are on newyork version. 

adding "tinymce" will give you addition benefits to handle the html field.

Thanks all.

Still images are missing in HTML Field as below screen shot:

find_real_file.png

so to handle those images do we need to do any specific change

did you save those image into db_image table ?

how are you inserting it ? 

Images are in sys_attchemnet table and providing sys_id of the image in html code

<p><img class="Test" src="sys_attachment.do?sys_id=xyz align="baseline" border="0" hspace="0" vspace="0" /><br /></p>