FixedColumns + Themes
FixedColumns + Themes
jumpmanjay
Posts: 1Questions: 0Answers: 0
was having problems with using fixedcolumns and themes. basically everything looked fine until you went to sort, then the fixed column would not update unless you manually did an fnUpdate. found a bug in FixedColumns.js (v2.0.3) line 796.
[code]this.className = $('span.DataTables_sort_icon', aoCloneLayout[i][j].cell)[0].className;[/code]
should be:
[code]this.className = $('span.DataTables_sort_icon', aoCloneLayout[i][j].cell).className;[/code]
[code]this.className = $('span.DataTables_sort_icon', aoCloneLayout[i][j].cell)[0].className;[/code]
should be:
[code]this.className = $('span.DataTables_sort_icon', aoCloneLayout[i][j].cell).className;[/code]
This discussion has been closed.