Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Roster title Changes

Avatar

Level 3

I need to change the titles for roles in the roster. I need to change "participant" to "presenters" for instance. I need this change to be reflected in the change role drop down as well.

Can someone point me in the right direction to get this done?

John

2 Replies

Avatar

Employee

Hi John,

I havent tried this, but setting the API Roster.itemRenderer might help to customize your Roster. For reference, you can check the  UserItemRenderer in SDK_SRC/com/adobe/rtc/pods/rosterClasses/UserItemRenderer.as

Thanks

Arun

Avatar

Level 3

Arun,

Yeah the titles are hard coded in the UserItemRenders.as class in a

public static const ROLE_STRINGS:Object = {10:"Audience", 50:"Participants", 100:"Hosts"};

Const. If you need to change the titles just extend this class and define it as the itemRenderer. Should be styleable but it works for now.

John