Hy, i have a table with 400 poeple showing as 10 poeple on the page. When i search for someone it is searching only in those 10 poeple in the page. How can modify the search to show me the person i am looking for, in all 400 poeple list.?
How do i search poeple in table list?
Eugene, here is what i am trying to do https://streamable.com/2125r2
so far i have tried to modify the limit for searchValue to 500, in my file with no luck
const [searchValue, setSearchValue] = React.useState(10); - original const [searchValue, setSearchValue] = React.useState(500) - modified
Hi
Looks like you are using search inside fetched data (10 out of 400), as we use server side pagination to optimize response time
You can use endpoint like /api/users?firstName=Jack
for server side search, or you can update frontend version to latest available, and this functionality will be available out of the box in Users table