Hi,
I need a few UI dropdowns with a large number of Options (1-900 in steps of 1, 80-150 in steps of 1, etc.).
I created this in two different ways, both by inputting an array with the desired Options.
The first is: creating the options inside a function using a for loop, then inputting them into the dropdown. This results in very slow loading of the dashboard after deployment/restart flows.
ver-1.json (9.1 KB)
The second is: creating the Options and saving them in flow.context. Then through a function, inputting them into the dropdown. This way is a bit faster.
ver-2.json (13.9 KB)
I'm looking for an idea/suggestion for an even better (faster) way to inject the dropdowns and load the dashboard.
Thanks.