Hi friends
i have a few challenges on my learning path!
I have 2000 rows with tools, I just want to filter them.
I have to turn on the paginator because without: Chrome is dead. 2000 rows is it huge or not?
But when I turn on the paginator, my filters do the ROLLUP formula only on data from the first page. How to get data into filters from all rows?
I have the plan to build a “cascading” filter - if I understand correctly some tutorials: I can filter results in a filter dropdown depending on another filter with IF in the filtering window - should that work?
screenshot for help to understand, I’m not sure about my English
Again: I tested last month 10000000 no-code tools, and weweb joins the biggest flexibility with true freedom for designers and IS EASY - at least for me. I just have to understand some key fields…
Great tool, thank you to developers…
2000 rows is a lot - browser is unlikely to handle. For that reason, you will need to handle pagination and filtering via your back-end. In that case, you will need to filter your data back-end and not in Weweb, because Weweb is only receiving the data one page at a time from your back-end
2,000 rows is a lot for the browser to render on the page (so you definitely need pagination, in the front or back, you can decide based on the user experience you want. backend pagination will require making an extra API call)
but 2,000 rows might only represent a small volume of data to download (so you might not need to filter in the backend. you’ll need to check how much data those 2,000 rows represent to make that decision)