FixedColumns 3.2.1 bug

FixedColumns 3.2.1 bug

FalconIAFalconIA Posts: 1Questions: 1Answers: 0

line 621:

.on( 'destroy.dt.DTFC', function () {
    jqTable.off( '.DTFC' );

    $(that.dom.scroller).off( '.DTFC' );
    $(window).off( '.DTFC' );
    $(this.s.dt.nTableWrapper).off( '.DTFC' );

    $(that.dom.grid.left.liner).off( '.DTFC '+wheelType );
    $(that.dom.grid.left.wrapper).remove();

    $(that.dom.grid.right.liner).off( '.DTFC '+wheelType );
    $(that.dom.grid.right.wrapper).remove();
} );

should be:

$(that.s.dt.nTableWrapper).off( '.DTFC' );

Answers

  • allanallan Posts: 63,863Questions: 1Answers: 10,519 Site admin

    Thanks for posting this. That error was resolved in git a little while ago, but hasn't made it out to a release yet. The nightly version has the fix.

    Allan

This discussion has been closed.