Bug (with fix) showing/hiding columns
Bug (with fix) showing/hiding columns
 mscott            
            
                Posts: 1Questions: 0Answers: 0
mscott            
            
                Posts: 1Questions: 0Answers: 0            
            
                    I've found that if I make a hidden column visible, where this hidden column is going to show in the next-to-last column, the column's data is shown in the last column instead of the next-to-last. This is because of a simple logic error at line 2052 (in the 1.8.2 release), here:
[code]
/* Need to decide if we should use appendChild or insertBefore */
bAppend = (iInsert >= _fnVisbleColumns( oSettings ));[/code]
The ">=" needs to be changed to just ">", then the columns show correctly.
Thanks.
                            [code]
/* Need to decide if we should use appendChild or insertBefore */
bAppend = (iInsert >= _fnVisbleColumns( oSettings ));[/code]
The ">=" needs to be changed to just ">", then the columns show correctly.
Thanks.
This discussion has been closed.
            
Replies
Regards,
Allan