-
Notifications
You must be signed in to change notification settings - Fork 753
Closed
Description
First of all, love the plugin.
I have a use case where I want to hide the entire column (header,input,background of input, and row) but still need to be able to filter the table on this column. I use external buttons to filter instead of having the user type in input box.
table.tablesorter thead tr.tablesorter-filter-row input.disabled {
opacity: 0.5;
filter: alpha(opacity=50);
}
The issue with this code is that the filter must be disabled, but I need the filter to still work, just the entire column hidden.
Thanks in advance!
Reactions are currently unavailable