为什么popover不能与bootstrap-table一起使用?

时间:2015-05-11 21:17:50

标签: twitter-bootstrap-tooltip bootstrap-popover bootstrap-table

我使用bootstrap-table和一些bootstrap-popover和/或工具提示。当我调整窗口大小或使用某些表函数时(例如:搜索或切换或排序)。然后弹出窗口或工具提示不再起作用。 (例如,工具提示变为标准的html工具提示。)。我想念的是什么?还是有问题?欢迎任何帮助!我试过一个标准的bootstrap表,我没有发现这个问题。

我只是在这里添加一个JSFiddle test with tooltip and popover

现在它的工作请看这里 solved

感谢github上djhvscf的帮助

所以对于js我有这个

<table id ="lst_art_adm" data-toggle="table" 
            data-striped="true" 
            data-search="true"
            data-show-toggle="true"
            data-mobile-responsive="true"
        >
            <thead>
                <tr>
                    <th data-sortable="true">ID</th>
                    <th>Titre</th>
                    <th>Sujet</th>
                    <th>Fonctions</th>
                </tr>
            </thead>
            <tbody>

     <tr>
        <td>14</td>
        <td align="left" width="80%">Un autre article <i>(archive)</i></td>
        <td>NPDS<a href="index.php?op=newtopic&amp;topic=1" class="tooltip">NPDS</a></td>

和html

     <tr>
        <td>13</td>
        <td align="left" width="80%"><a data-toggle="popover" data-trigger="hover" href="article.php?sid=13" data-content="" title="13" data-html="true" class="">test article</a></td>
        <td>Modules<a href="index.php?op=newtopic&amp;topic=2" class="tooltip">Modules</a></td>

background-image

 ...

0 个答案:

没有答案