Versiones de arranque afectadas: 1.18.3
Disculpe, cuando use encabezado fijo de tabla y popovers, el marco emergente de popovers fallará. ¿Hay alguna manera de resolverlo? Mi código es el siguiente:
<script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.18.3/bootstrap-table.min.js"></script> <script src="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.18.3/extensions/sticky-header/bootstrap-table-sticky-header.js"></script> <script>$(function show() {$("[data-toggle='popover']").popover({});})</script> <script>var $table = $('#table')$(function() {$table.bootstrapTable('destroy').bootstrapTable({stickyHeader: true,})})</script> <table data-toggle="table" class="table-hover table-striped" id="table" data-toolbar="#toolbar" >...<button id="temp" type="button" class="btn btn-secondary" data-container="body" data-toggle="popover" data-placement="top" data-content="Top popover">Popover on top</button>...</table> Any ideas what I'm doing wrong? Thanks