如何在不重叠的数据表中创建下拉列表?

时间:2019-04-18 09:22:00

标签: jquery datatables

在数据表中添加下拉菜单时出现问题。我可以打开该下拉列表,但它将与分页和其他记录重叠。

您可以查看image here

<table class="table dataTable table-striped table-border" cellspacing="0" width="100%">
  <thead>
    <tr>
      <th class="disabled-sorting">Actions</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>
        <div class="testing">
          <a class="nav-link dropdown-toggle" id="notification" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                                        test
                                    </a>
          <div class="dropdown-menu" aria-labelledby="notification">
            <a class="dropdown-item" href="#">Action</a>
            <a class="dropdown-item" href="#">Another action</a>
          </div>
        </div>

      </td>
    </tr>
  </tbody>
</table>

如何修复下拉菜单?

0 个答案:

没有答案