Hi.
I’m using an IAS and showing a CheckBoxList. I need to fill it with 5000 entries. Is there a way of improving the time it takes to load?
List<string> list = new List<string>();
for (int i = 0; i < 5000; i++){list.Add($”Element {i}”);}
MyCheckBox.SetOptions(list);
Daniel Mainha [DevOps Advocate] Selected answer as best 19th July 2024

Hi Daniel,
Currently not, as each entry needs to be put on the UI. But a checkboxlist with 5000 entries are quite large too.
Is a checkboxlist really needed or should an other component fit better with the implementation you want to achieve?
Can you explain the purpose of using such a big checkboxlist?
Daniel Mainha [DevOps Advocate] Selected answer as best 19th July 2024
I see that this question has been inactive for some time. Do you still need more information for this? If yes, could you reply to Thomas’s questions below? Or if the question can be considered resolved, could you select his answer to indicate this?