Looking for ways to style a specific table element that is generated from a repeat.for
loop on a <td>
tag.
<td repeat.for="field of fields"
class="${field.fieldKey == 'validTo' ? 'fontweigth: bold;': ''}">
bold field-text here
</td>
My initial attempt at styling the repeated element doesn't seem to be working as expected.
I aim to have the validTo
field appear in bold font when a specific event is triggered. Currently, I'm struggling to find a suitable solution for this. Any assistance or suggestions would be greatly appreciated!