from reactable import Reactable, embed_css
from reactable.data import cars_93
embed_css()
Searching
You can make the entire table searchable by setting searchable=True
:
= cars_93[:20, ["manufacturer", "model", "type", "air_bags", "price"]]
cars =cars, searchable=True, min_rows=10) Reactable(data
Custom searching
The table search method can be customized using the searchMethod argument in reactable(). See the Custom filtering guide for details and examples.