I'm trying to put a popover within a row of a table that is dynamically mounted according to the data coming from the database. I tested out of the table and it worked, but inside the table line did not.
My Js are like this
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
My html is like this
<tbody ng-repeat="dis in distritos ">
<tr>
<td>{{dis.idDistrito}}</td>
<td>{{dis.nome}}</td>
<td>{{dis.codigoDne}}</td>
<td><a href="#" data-toggle="popover" title="Popover Header" data-content="Some content inside the popover">Toggle popover</a>
</td>
</tr>