JQuery 数据表宽度

JQuery Datatables Width

提问人:Onur 提问时间:11/3/2023 更新时间:11/3/2023 访问量:20

问:

我在我的Laravel项目中使用JQuery Datatables。我在列宽上有问题。我的第二列有很多文字。这就是我的桌子变成移动版本的原因。

            $('#example').DataTable({
                responsive: true,
                autoWidth: false,
                language: {
                    "url": "//cdn.datatables.net/plug-ins/1.10.24/i18n/Turkish.json"
                },
                order: [
                    [7, "desc"],
                ],
                columnDefs: [{
                        targets: [0],
                        width: "25%"
                    },
                    {
                        targets: [1],
                        width: "5px"
                    },
                    {
                        targets: [2],
                        width: "10%"
                    },
                    {
                        targets: [3],
                        width: "10%"
                    },
                    {
                        targets: [4],
                        width: "20%"
                    },
                    {
                        targets: [5],
                        width: "10%"
                    },
                    {
                        orderable: false,
                        targets: [6],
                        width: "15%"
                    },
                    {
                        targets: [7],
                        width: "5%"
                    },
                ],

这是我代码的宽度区域。如何解决此问题?我尝试:

  • 响应式:true
  • autoWidth:假
  • 自动换行:断字 但是,没有工作。
jQuery 数据表

评论


答: 暂无答案