我正在使用datatables插件,而且当我点击td中的图像时,我已扩展/折叠的代码但是我希望能够点击该行进行扩展,请任何人都可以帮忙吗?这是代码:
$(document).ready(function() {
/*
* Insert a 'details' column to the table
*/
var nCloneTh = document.createElement( 'th' );
var nCloneTd = document.createElement( 'td' );
nCloneTd.innerHTML = '<img src="../examples_support/details_open.png">';
nCloneTd.className = "center";
$('#example thead tr').each( function () {
this.insertBefore( nCloneTh, this.childNodes[0] );
} );
$('#example tbody tr').each( function () {
this.insertBefore( nCloneTd.cloneNode( true ), this.childNodes[0] );
} );
/*
* Initialse DataTables, with no sorting on the 'details' column
*/
var oTable = $('#example').dataTable( {
"aoColumnDefs": [
{ "bSortable": false, "aTargets": [ 0 ] }
],
"aaSorting": [[1, 'asc']]
});
/* Add event listener for opening and closing details
* Note that the indicator for showing which row is open is not controlled by DataTables,
* rather it is done here
*/
$('#example tbody td').live('click', function () {
var nTr = this.parentNode.parentNode;
if ( this.src.match('details_close') )
{
/* This row is already open - close it */
this.src = "../examples_support/details_open.png";
oTable.fnClose( nTr );
}
else
{
/* Open this row */
this.src = "../examples_support/details_close.png";
oTable.fnOpen( nTr, fnFormatDetails(oTable, nTr), 'details' );
}
} );
} );
其次我希望展开和折叠成为一个流畅的动画,有人可以告诉我该怎么做吗?
由于
答案 0 :(得分:2)
如果您的新行代码中有div,则可以执行以下操作。在我的新行中,我有一个带有一类innerDetails的div。这是我做的:
jquery.dataTables.js的第5648行是:
$(nNewRow).insertAfter(nTr);
将其更改为:
var innerDetails = $(nNewRow).find('div.innerDetails');
innerDetails.css('display', 'none');
$(nNewRow).insertAfter(nTr);
innerDetails.slideDown();
这就是开箱即用的方式,imo。
答案 1 :(得分:0)
问题的第一部分:
$('#example tbody tr').live('click', function () {...}
对于第二部分,在jquery.dataTables.js中找到this.fnOpen = function( nTr, sHtml, sClass )
,然后在fnOpen方法中找到这一行:
$(nNewRow).insertAfter(nTr);
将其更改为:
$(nNewRow).css('display','none').insertAfter(nTr).slideDown();
或者你选择的动画是什么。
这是未经测试的,但类似的东西肯定会有效。
答案 2 :(得分:0)
我的解决方案:
JS
$(document).ready(function () {
......
$('.datatable-header-footer').on('draw.dt', function () {
bindRowToggle();
});
$('.datatable-header-footer').on('processing.dt', function () {
bindRowToggle();
});
$('.datatable-header-footer').on('search.dt', function () {
bindRowToggle();
});
bindRowToggle();
});
function bindRowToggle() {
$('tr.parentOrder').click(function () {
$(this).nextAll(':lt(2)').toggle();
});
}
CSS
.parentOrder {
}
.childOrder {
display: none;
}
HTML
<table class="table datatable-header-footer text-nowrap">
...
<tr class="parentOrder"></tr>
<tr class="childOrder"></tr>
<tr class="childOrder"></tr>