Tablesorter Issue
-
To whom it may concern,
I’ve got a number of issues and suggestions that I’d like to add in support of the Tablesorter.
1. Please take a look at my website and can you suggest the reason why my table titles are vertical ? I wish for them to be horizontal. I’m presuming this is a CSS issue.
2. I’ve come across this code where you can display checkbox categories;
function FilterCompanies() {
$(‘:checkbox:not(:checked)’).each(function () {
var unselectedCategoryId = $(this).attr(‘id’).substring(3);
$(‘.tablesorter > tbody > tr > td[id]’).each(function() {
if ($(this).attr(‘id’) == unselectedCategoryId) {
$($(this).parent()).addClass(‘hidden’);
}
});
});
$(‘:checkbox:checked’).each(function () {
var unselectedCategoryId = $(this).attr(‘id’).substring(3);
$(‘.tablesorter > tbody > tr > td[id]’).each(function () {
if ($(this).attr(‘id’) == unselectedCategoryId) {
$($(this).parent()).removeClass(‘hidden’);
}
});
});
$(“.tablesorter”).trigger(“applyWidgets”)
}I was wondering how to add this.
3. I’ve come across this ( https://css-tricks.com/footable-a-jquery-plugin-for-responsive-data-tables/ ) which enables you to make it RESPONSIVE.
I was wondering if this is a feature that can be added to Tablesorter.
- The topic ‘Tablesorter Issue’ is closed to new replies.