Can this implementation hold 100.000 entries?
Can this implementation hold 100.000 entries?

Is it possible to use this for approx 100,000 rows and search across that dataset without UI stutter?
Assuming ~10 columns with short text fields like name, etc
This discussion has been closed.
Replies
Yes. Typically for that amount of data we’d suggest you start thinking about server-side processing, but if it is small enough data points that the download isn’t particularly large, then client-side will still work just fine.
Also, make sure you keep paging enabled - obviously drawing 100’000 rows would take a lot more time than just doing 10 at a time.
Allan