数据表Jquery展开/折叠和动画

bzzcjhmw  于 2022-11-29  发布在  jQuery
关注(0)|答案(3)|浏览(179)

我正在使用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' );
                }
            } );
        } );

其次,我希望展开和折叠是一个平滑的动画,有人能告诉我如何做到这一点?
谢谢

628mspwn

628mspwn1#

如果你在新的行代码中有一个div,你可以做如下操作。在我的新行中,我有一个div,它有一个innerDetails类。下面是我所做的:
jquery.dataTables.js的第5648行为:

$(nNewRow).insertAfter(nTr);

将其更改为:

var innerDetails = $(nNewRow).find('div.innerDetails');
innerDetails.css('display', 'none');
$(nNewRow).insertAfter(nTr);
innerDetails.slideDown();

这就是它应该开箱即用的方式,imo。

wbgh16ku

wbgh16ku2#

对于您问题的第一部分:

$('#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();

或您选择的任何动画。
这是未经测试的,但类似的东西肯定会工作。

ulydmbyx

ulydmbyx3#

我的解决方案:
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>

相关问题