Which IIQ version are you inquiring about?
Version 8.3
Share all details related to your problem, including any error messages you may have received.
I’m trying to implement a drop down field inside the form which will return a list of Entitlement from a given Application. The list is quite large and is timing out the webpage when attempting to click the drop down. The requirement is that it should return the list of Entitlements and the end user should have the ability to select multiple items from the list. Here is my implementation:
List groups = new ArrayList();
QueryOptions qo = new QueryOptions();
qo.add(Filter.and(Filter.eq("application.name", appName), Filter.like("displayName", startsWith), Filter.eq("type", "group")));
Iterator result = context.search(ManagedAttribute.class, qo);
while (result.hasNext()){
ManagedAttribute managedAttribute = (ManagedAttribute)result.next();
groups.add(managedAttribute.getDisplayName());
}
Util.flushIterator(result);
return groups;
What’s the best way to go about this so that I don’t timeout the form page?