FixedHeaders .DataTables_sort_wrapper sizes
FixedHeaders .DataTables_sort_wrapper sizes
stefankruger
Posts: 3Questions: 0Answers: 0
Hi all,
i've implemented FixedHeaders on a client app because the table was a bit long and he wanted to have headers available while scrolling the DTT.
I then had problems with columns width which were not matching between the cloned thead and the original one. This was due to the .DataTables_sort_wrapper dimensions not trasmitted to the cloned ones.
I've manually updated the uncompressed JS for the FixedHeader Extra in _fnCloneThead.
[code]
if( jQuery(this).find( '.DataTables_sort_wrapper' ).length > 0 ){
jQuery("thead>tr th:eq("+i+") .DataTables_sort_wrapper", nTable )
.width( jQuery(this).find( '.DataTables_sort_wrapper' ).width() )
.height( jQuery(this).find( '.DataTables_sort_wrapper' ).height() )
}
[/code]
Just thought i should share in case someone has the same problem as i had.
Thanks again for the extras which are awesome to use !
Stefan
i've implemented FixedHeaders on a client app because the table was a bit long and he wanted to have headers available while scrolling the DTT.
I then had problems with columns width which were not matching between the cloned thead and the original one. This was due to the .DataTables_sort_wrapper dimensions not trasmitted to the cloned ones.
I've manually updated the uncompressed JS for the FixedHeader Extra in _fnCloneThead.
[code]
if( jQuery(this).find( '.DataTables_sort_wrapper' ).length > 0 ){
jQuery("thead>tr th:eq("+i+") .DataTables_sort_wrapper", nTable )
.width( jQuery(this).find( '.DataTables_sort_wrapper' ).width() )
.height( jQuery(this).find( '.DataTables_sort_wrapper' ).height() )
}
[/code]
Just thought i should share in case someone has the same problem as i had.
Thanks again for the extras which are awesome to use !
Stefan
This discussion has been closed.