As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Dan -- Your code above is using a synchronous for loop to resolve the images, that means that none of the images will be displayed until the entirety of the logic has completed. Using an asynchronous loop and using promises and their callbacks could improve your performance in this case.
Thanks,
Dan,
We don't generate custom code here, but I can tell you that the for loop on line 12 is waiting for each iteration to complete. We implement the following async framework which allows you to use an asynchronous foreach loop to process your data: https://github.com/caolan/async
If you have any other questions please let me know.
Thanks,
Dan ponce
Hi! I have this code for finding the last members I add on my web app:
The problem is that when the website is loading, the images are showing too slow. Is there anything I could do to fix this or is just a common problem with GCS??