如何在模式引导程序中调整表

时间:2019-09-06 17:30:54

标签: asp.net-mvc datatable

我的数据表中有以下代码:

enter image description here


       $(document).ready(function () {
            $('#LogsTable').DataTable({
                "order": [[3, 'desc']],
                paging: false,
                //"scrollY": false,
                //"scrollX": true,
                searching: false,
                "bInfo": false,
                "columnDefs": [
                    { "width": "20%", "targets": 4 }
                ]
            });
        });


我的问题是如何在我的模态引导程序中放置数据集? 在X中插入一个滚动条。不知道 谢谢

2 个答案:

答案 0 :(得分:0)

使用模态对话框添加model-lg

<div class="modal" id="email" data-backdrop="static" data-keyboard="false">
        <div class="modal-dialog model-lg">
            <div class="modal-content">
            </div>
       </div>      
</div>

答案 1 :(得分:0)

您可以尝试向表中添加“表响应”类。 Bootstrap 4肯定拥有它,但是对于较低版本却一无所知。

<div class="table-responsive">
  <table class="table">
    ...
  </table>
</div>