Skip to content

rtk-breakout-room-participants

Last updated View as MarkdownAgent setup

A component which lists all participants, with ability to run privileged actions on each participant according to your permissions.

Properties

Property Type Required Default Description
iconPack IconPack defaultIconPack Icon pack
meeting Meeting - Meeting object
participantIds string[] - Participant ids
selectedParticipantIds string[] - selected participants
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

<rtk-breakout-room-participants></rtk-breakout-room-participants>

With Properties

<rtk-breakout-room-participants
 participantIds="example"
 selectedParticipantIds="example">
</rtk-breakout-room-participants>
<script>
  const el = document.querySelector("rtk-breakout-room-participants");

  el.meeting= meeting
  el.participantIds= [];
  el.selectedParticipantIds= [];
</script>

Was this helpful?