in aggregate 10000 records are there , how to speedup the loading of that aggregate
Hi,
You are hiding the second table in if condition and so that second table is not available in DOM.
Here is the quick fix. Hope you can go from here.
Regards,
Wasimkhan S
Can you elaborate your requirement. To speed up the loading you can set max record in aggregate property. you can also set variable to it.
https://success.outsystems.com/documentation/11/developing_an_application/design_ui/patterns/using_mobile_and_reactive_patterns/navigation/pagination/
Regards,Wasimkhan S
Hi Wasim
i want visible 10000 records without pagination, how to speed up the loading of that table aggregate
You can increase the max record on scroll.
10000 records will not be visible on the screen anyhow. So if you don't want to go for manual pagination then can do something on page scroll.
To speed up, can use indexing on entity and also ensure fetch only required fields as per UI requirement.
regards
Here is the sample OML.
Was it helpful?
Hi wasim,
Same screen has two tables with button group, that time the Java script not working and screen shows an error while on render
What was the script?
Hi Wasim,
The error message "cannot read properties of null (reading 'addEventListener')" suggests that the JavaScript code is trying to locate an HTML element by its ID to attach an event listener, but it fails to find any element with the specified ID when the code runs. Instead of using document.getElementById("PendingListTable"), why not pass the ID of the table as a parameter to the script, like document.getElementById(parameters.id), and see if that works?
Also, I'd recommend creating a new post when the context of the problem changes. This way, people with specific expertise in the area can assist you more effectively.
Previously we are discussed with Button Group, Same functionality we want to try in Navigation tabs ?How
This screen converted to Block and that block used in another screen that on ready action not working Scrolling of Orders
I don't think it's clear why you want/need to do that. It's not a best practice to load that many records (considering you want to load to screen). Maybe you want to export data to excel or do a print of all records?
Please note that:
Please add more context over what you're trying to achieve.
Best Regards,Tiago
Hi, why you need to show 10k records?
Maybe if you can contextualize, someone can help you.
Just imagining what you what are looking for, I remember the lazy loading.
I am curious about a solution.
Regards
There must be some reason for such requirement, could you please provide some more context?