You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using { theme : "bootstrap" } and { widgets : [ "filter"] }.
Everithing is ok but, if I change "filter_cssFilter" option, from "tablesorter-filter" to "form-control input-sm" (to use bootstrap css), filters stop to work!
Am I wrong?
The text was updated successfully, but these errors were encountered:
Hmm, I think it's because within the code, it uses filter_cssFilter to find the filter, but if it contains more than one class name, jQuery's find won't find it (i.e. $('table').find('.form-control input-sm') would likely return nothing because it assumes input-sm is an HTML tag.
I'll fix this issue in my next update. Thanks for reporting it!
Ok, all fixed. The default filter_cssFilter option is now an empty string. It is no longer used to find the filter elements as all filter elements get the class name "tablesorter-filter" added. That option will allow adding additional class names to the filters.
I'm using { theme : "bootstrap" } and { widgets : [ "filter"] }.
Everithing is ok but, if I change "filter_cssFilter" option, from "tablesorter-filter" to "form-control input-sm" (to use bootstrap css), filters stop to work!
Am I wrong?
The text was updated successfully, but these errors were encountered: