FixedHeader column click
FixedHeader column click

Example : https://jsfiddle.net/mqapoxu8/4/
Table ordering is set to false, fixedHeader to true.
I intercept the column header click with
$('.device-table').on( 'click', 'thead th', function () {
alert('x');
} );
It works fine except when the table has been scrolled. Any solution ?
This discussion has been closed.
Replies
You need to use delegated events for that, as FixedHeader adds an additional element to the DOM:
Updated example here,
Colin
Awesome. Thanks a lot Colin.