rrickgauer / auto-tables

My personal JavaScript library for sorting and searching tables.
https://www.ryanrickgauer.com/blog/entries.php?entryID=37
MIT License
4 stars 2 forks source link

Table search not working #18

Open Soitora opened 3 years ago

Soitora commented 3 years ago

Hey, I was never able to get Table Search working, even when following the exact template used on your blog.

Here's a fiddle with how I've set it up, basically: https://jsfiddle.net/Soitora/zrbxj436/25/

Soitora commented 3 years ago

Okay so, it was "working", but the guide never explained that you needed to fix one or two classes: .d-none is added to non-results, so my issue was fixed when I added display: none; for this. .result-row is added to all rows during search, so this can also be styled accordingly.

Maybe add this info to the project README