FixedColumns 3.2.1 bug
FixedColumns 3.2.1 bug
FalconIA
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' );
This discussion has been closed.
Answers
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