Is it possibility to show the report in a grid based on group type?

is it possibility to show the report in a grid like below format based on group type?

Group name Users
-----------------------------------------------
ABC user1
User2
BCD user3
user4

Any suggestions?

OriginalPostID-206219

OriginalPostID-206219

  Discussion posts and replies are publicly visible

Parents
  • This would be pretty easy in an editable grid with a text field for the group name and a rich text list for the users.

    Here a quick example a threw together:
    a!gridLayout(
    headerCells: {
    a!gridLayoutHeaderCell(label: "Group"),
    a!gridLayoutHeaderCell(label: "Members")
    },
    rows: {
    a!gridRowLayout(
    contents: {
    a!textField(
    value: "Group A",
    readOnly: true
    ),
    a!richTextDisplayField(
    value: {
    a!richTextBulletedList(
    items: {"User 1", "User 2", "User 3"}
    )
    }
    )
    }
    )
    }
    )
Reply
  • This would be pretty easy in an editable grid with a text field for the group name and a rich text list for the users.

    Here a quick example a threw together:
    a!gridLayout(
    headerCells: {
    a!gridLayoutHeaderCell(label: "Group"),
    a!gridLayoutHeaderCell(label: "Members")
    },
    rows: {
    a!gridRowLayout(
    contents: {
    a!textField(
    value: "Group A",
    readOnly: true
    ),
    a!richTextDisplayField(
    value: {
    a!richTextBulletedList(
    items: {"User 1", "User 2", "User 3"}
    )
    }
    )
    }
    )
    }
    )
Children
No Data