Book a Demo

Author Topic: Does the notes field support HTML tables?  (Read 4983 times)

mse

  • EA User
  • **
  • Posts: 308
  • Karma: +1/-0
    • View Profile
Does the notes field support HTML tables?
« on: September 18, 2024, 06:32:03 pm »
Given the following text in a .csv file:

Code: [Select]
"<p><b>TBD</b></p>

<p>&nbsp;</p>

<table border=""1"" cellpadding=""1"" cellspacing=""0"" style=""border-collapse:collapse; width:500px"">
 <tbody>
  <tr>
   <td>A</td>
   <td>B</td>
  </tr>
  <tr>
   <td>1a</td>
   <td>1b</td>
  </tr>
  <tr>
   <td>2a</td>
   <td>2b</td>
  </tr>
 </tbody>
</table>

<p>&nbsp;</p>
"

When I import this using the CSV import of EA, in the notes, field, I see the bold TBD and the paragraph spaces, but the table is written using the raw HTML code. Is there a way to somehow get EA to display the table? If it can interpret the bold HTML and the paragraphs, why not the tables?

The Notes field looks like this:

TBD




<table border="1" cellpadding="1" cellspacing="0" style="border-collapse:collapse; width:500px">
<tbody>
  <tr>
   <td>A</td>
   <td>B</td>
  </tr>
  <tr>
   <td>1a</td>
   <td>1b</td>
  </tr>
  <tr>
   <td>2a</td>
   <td>2b</td>
  </tr>
</tbody>
</table>



Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Does the notes field support HTML tables?
« Reply #1 on: September 18, 2024, 06:35:04 pm »
Notes in EA have a very limited formatting capability using something that looks like html.
Tables are not supported however.

If you need something more you'll need to use linked documents.

Geert