This attribute should be a column returned by the DataLayer that is not blank for the rows representing a user group/role. It should be blank/null for rows representing users.
In this example, a SQL query returns a list containing both user names and group names.
select USER_NAME as USERNAME, NULL as isGroup from lgxUser union select ROLE as USERNAME, 1 as isGroup from gxRoleNew
|