gpt4 book ai didi

php - DataTable 中的响应表

转载 作者:行者123 更新时间:2023-11-28 02:26:23 25 4
gpt4 key购买 nike

我的页面是这样的: photo

我想在页面太小时添加 scrollX,所以我必须添加行scrollX: true

当我添加页面时如下所示: photo

DataPicker 在行的后面,列的行不在同一行,但 scrollX 工作(看图片)。当我写入输入和 ajax 加载数据时,那一行列工作正常但数据选择器仍然无法工作。我该如何修复?

代码_table.blade.php

<table class="table table-striped table-bordered" id="policies-table" style="width: 100%;">
<thead>
<tr>
<th>Numer polisy</th>
<th>Produkt</th>
<th>Data wystawienia</th>
<th>Wartość</th>
<th>Składka</th>
<th>Wystawiający</th>
<th>Akcje</th>
</tr>
</thead>
</table>

Ajax 加载:

$('#policies-table').DataTable({
ajax: {url:"url",
type: "POST",
'headers': {'X-CSRF-TOKEN': '{{ csrf_token() }}'}},
processing: true,
serverSide: true,
autoWidth: true,
scrollX: true,
scrollCollapse: true,
jQueryUI: true,
order: [[ 2, "desc" ]],
........
});

最佳答案

试试这个 $('#policies-table').DataTable({responsive: true} );

或者如果你正在使用 bootstrap,你不能尝试这个

<div class='table-responsive'>
<table class='your classes'>
</table>
</div>

关于php - DataTable 中的响应表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47941034/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com