-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FEATURES REQUEST :) #76
Comments
|
I believe the request for 1. is to allow a filter function for columns within the table, so that in addition to sorting by a column, the user can also filter the table by a column by typing in some search text. Any rows where the value in the filtered column doesn't match the filter text would then be hidden. This would certainly be a useful feature though is perhaps taking things beyond the scope of a sortable table. |
yes sir you got it right |
Yeah, that would be a bit outside the scope of sortable. ....though a "filterable" solution shouldn't be rocket science. 🤔 It could work almost the same with an .filterable tbody tr:has(td[data-filtered="1"]) {
display: none;
} It would be a bit tricky to get it to work side by side with sortable, but not incredibly so. Just a matter of either sorting or filtering, but hey, wait a minute, I don't have time for this! So, unless you guys want to do it, I'll put it on my todo list 😉 |
The text was updated successfully, but these errors were encountered: