Hi,
i have simple script sending users in group to an array and then displaying using for() loop.
String list = ComponentAccessor.getGroupManager().getUserNamesInGroup("somegroup").toString();
String list2 = list.substring(1, list.length() - 1);
String[] array = list2.split(",");
problem is that script displays username not full display name. i was trying with getDisplayName() function but with no result
could you help me?