When doing something like this:
{#each investorsTable.rows as row: Row}
<tr>
<td><Button class="text-xs" onclick={() => (selectInvestor(row.id, row.registrationName, row.email))}>Select</Button></td>
<td>{@html row.id}</td>
<td>{@html row.email}</td>
<td>{@html row.registrationName}</td>
</tr>
{/each}
and tablehandler is set to highlight: true
HTML formatted values are returned instead of original data values.
For example, name<u class="highlight">@gmail</u>.com
A workaround is to use the returned ID of the row and lookup the values. However, this workaround does not work if you are highlighting/searching ID field as it too will return a modified ID value.
When doing something like this:
and tablehandler is set to
highlight: trueHTML formatted values are returned instead of original data values.
For example,
name<u class="highlight">@gmail</u>.comA workaround is to use the returned ID of the row and lookup the values. However, this workaround does not work if you are highlighting/searching ID field as it too will return a modified ID value.