我有一个JS数据表,我们输入客户信息,在某些情况下,一些客户参考是这样的
reference_text=%26reference%5Ftext%3D%2526reference%255Ftext%253Dtest%252520ipsum%25252C%25252008%25252DAug%25252D08%2546%26&
这打破了我的html表并强制列不成比例增长,因为它不包含空格,我已经在JS小提琴中设置了一个例子来说明这个问题,有没有办法可以强制这个列在与另一个格式一致或包装文本以使其适合列?
$(document).ready(function () {
if ($('#report_gen_user').length) {
$('#report_gen_user').dataTable(
{
"iDisplayLength": -1,
initComplete: function () {
var api = this.api();
api.columns().indexes().flatten().each(function (i) {
if (i == 2 || i == 9) {
var column = api.column(i);
var select = $('<select><option value=""></option></select>')
.appendTo($(column.footer()).empty())
.on('change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
column
.search(val ? '^' + val + '$' : '', true, false)
.draw();
});
column.data().unique().sort().each(function (d, j) {
select.append('<option value="' + d + '">' + d + '</option>')
});
$(".hidefooter").html("");
}
});
},
"aLengthMenu": [
[15, 25, 35, 50, 100, -1],
[15, 25, 35, 50, 100, "All"]
],
"aoColumnDefs": [{
"bVisible": false,
"aTargets": []
}],
"aaSorting": [],
"fnFooterCallback": function (nRow, aasData, iStart, iEnd, aiDisplay) {
var columnas = [1, 5]; //the columns you wish to add
for (var j in columnas) {
var columnaActual = columnas[j];
var total = 0;
var allTimeTotal = 0;
for (var i = iStart; i < iEnd; i++) {
total = total + parseFloat(aasData[aiDisplay[i]][columnaActual]);
}
total = total.toFixed(2);
for (var counter in aasData) {
allTimeTotal = allTimeTotal + parseFloat(aasData[counter][columnaActual]);
//console.log((aasData[counter][columnaActual]));
}
allTimeTotal = allTimeTotal.toFixed(2);
if (total == allTimeTotal) {
$($(nRow).children().get(columnaActual)).html(' '+total);
} else {
$($(nRow).children().get(columnaActual)).html(' '+total + ' (' + allTimeTotal + ')');
}
} // end
}
}
);
}
})
答案 0 :(得分:8)
将autoWidth
设为false并定义您的首选column
width
:
var table = $('#example').DataTable({
autoWidth: false,
columns : [
{ width : '50px' },
{ width : '50px' },
{ width : '50px' },
{ width : '50px' },
{ width : '50px' },
{ width : '50px' }
]
});
然后,最重要的是 - 添加这个CSS:
table.dataTable tbody td {
word-break: break-word;
vertical-align: top;
}
word-break
是重要的部分,vertical-top
适用于眼睛:)
演示 - &gt;的 http://jsfiddle.net/qh63k1sg/ 强>
在你的小提琴中,上面似乎不起作用,但这是因为你将每个字符串作为值添加到<select>
,最终会更长。为了防止这种情况,请在插入<option>
值之前剪掉长串;您可以将...
添加到结尾:
column.data().unique().sort().each(function (d, j) {
if (d.length>25) { d=d.substring(0,25)+'...' }
select.append('<option value="' + d + '">' + d + '</option>')
});
你的小提琴分叉 - &gt;的 http://jsfiddle.net/bdwd1ee7/ 强>