Hi,
I am displaying a list that shows default collapsed in the Wicked Viewer. How
can I show it default expanded?
I use�the follwing code:
� ��// {{ Profiles (Collection)
� � @Persistent(mappedBy = "owner", dependentElement = "false")
� � private SortedSet profiles = new TreeSet();
�
� � @MemberOrder(sequence = "1")
� � public SortedSet getProfiles() {
� � � � return profiles;
� � }
�
� � public void setProfiles(final SortedSet collectionName) {
� � � � this.profiles = collectionName;
� � }
� � // }}
And the for the�list itself:
�
public class Profiles extends AbstractFactoryAndRepository {
�
� � @ActionSemantics(Of.SAFE)
� � public List allUsers() {
� � � � return allInstances(Profile.class);
� � }
�
}
�