Table cell showing more than one field

Hi,
Is there a way to do the following?
I have a Bootstrap table that is showing records from a database table.
I want to show in the cells under one column the value of one field from the database table (e.g. Status) and right underneath it, i.e, in the same cell and in a smaller font, the value of another field (e.g. Explanation).

I tried to put two dmx-text elements in the same <td …> tag and it did not work.

Many thanks in advance for ideas or pointers,

Alex

Hello,

You can just change this from:
<td dmx-text="property1"></td>

to

<td>{{property1}} <br> {{property2}}</td>

or if you want to have the second property font smaller, you can just have two paragraphs there:

<td>
     <p>{{property1}}</p>
     <p class="small">{{property2}}</p>
</td>

Excellent. It works like a charm!

Can you please educate me on the difference between using

and {{property1}} other than that the former is what the bootstrap table generator creates?

Thank you,

Alex

You can change this when generating the table, so you can use both:

I see. What there any differences if the cell contains a bind ({{property}}) and if the cell contains an inner

?

Many thanks,

Alex