hi,
could you please help me to add button in each row of table.
i already googled, but i did not find any example.
please find in the below my html code.
<table class= "content-table" >
<tr>
<th><i class="nr-dashboard-warning" ></i>SourceName</th>
<th>ReceiveTime</th>
<th>Message</th>
<th>Severity</th>
</tr>
{{#payload}}
<tbody>
<tr class="">
<td><span>⚠</span> {{SourceName }} <!--<a href= {{ SourceName }} target="_blank">event details</a>--> </td>
<td>{{ReceiveTime}}</td>
<td>{{Message}}</td>
<td class= "sev">{{Severity}} </td>
</tr>
</tbody>
{{/payload}}
</table>
thank you