我正在使用带有响应式插件的数据表,
https://cdn.datatables.net/responsive/2.1.1/css/responsive.dataTables.css
https://cdn.datatables.net/responsive/2.1.1/js/dataTables.responsive.js
这是我的屏幕结果:
移动视图顶部:
移动视图底部:
我的JS代码:
dataTable = $('#agency_data').DataTable({
"processing":true,
"serverSide":true,
"order":[],
responsive: true,
"language": {
"infoFiltered": ""
},
"ajax":{
url:base_url+"/agency-listing",
type:"POST"
},
"columnDefs":[
{
"targets":[0, 3], //first and last not sortable
"orderable":false,
},
],
});
我的表格HTML:
<table id="agency_data" class="table table-bordered table-striped">
<thead>
<tr class="info">
<th width="10%">ID</th>
<th width="15%">Agency Code</th>
<th width="65%">Agency Name</th>
<th width="15%">Action</th>
</tr>
</thead>
</table>
JSFIDDLE: HERE
问题:
1)在移动视图中,如何获得Long组织名称,显示完美?像BR?
2)如何摆脱底部的水平滚动,以便用户无需在移动视图上滚动?
答案 0 :(得分:5)
补充:width =&#34; 100%&#34;进入表解决了问题
<table id="agency_data" class="table table-bordered table-striped" width="100%">