我正在使用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' );
}
} );
} );
其次,我希望展开和折叠是一个平滑的动画,有人能告诉我如何做到这一点?
谢谢
3条答案
按热度按时间628mspwn1#
如果你在新的行代码中有一个div,你可以做如下操作。在我的新行中,我有一个div,它有一个innerDetails类。下面是我所做的:
jquery.dataTables.js的第5648行为:
将其更改为:
这就是它应该开箱即用的方式,imo。
wbgh16ku2#
对于您问题的第一部分:
对于第二部分,在jquery.dataTables.js中找到
this.fnOpen = function( nTr, sHtml, sClass )
,然后在fnOpen方法中找到以下行:将其更改为:
或您选择的任何动画。
这是未经测试的,但类似的东西肯定会工作。
ulydmbyx3#
我的解决方案:
JS系统
CSS
HTML语言