How do I get all members with a group role to be displayed as members of that group in the member list?

How do I get all members with a group role to be displayed as members of that group in the member list?

Parents Reply
  • On our version of 9.x, it seems like there are two views of that widget...one that shows actual group members and one that shows role-based members.  Looks like it is controlled with a toggle of another widget called "Group - Membership List" configured to show the List Options.

    This widget looks to set a querystring param called "Show" and then the widget renders one of two .vm files which make different calls to pull group members or role members.  At least on 9.0 it does not look like there is a blended display of both membership types out of the box

    #if($show == 'roles')
    $core_v2_widget.ExecuteFile('list-roles.vm')
    #else
    $core_v2_widget.ExecuteFile('list-users.vm')
    #end

Children