Meeting SDK, component view, z-index issue

Meeting SDK: 3.1.4, component view

I successfully integrated the Meeting SDK (3.1.4) with the component view into my app. However, I’m encountering an issue where other UI elements of the app are obscuring some Zoom pop-ups. As shown in the attached screenshot, the portal’s sidebar is obscuring the Zoom Settings popup.

Is there a way to adjust the z-index of these pop-ups? Currently, the default z-index of the Settings popup is 2, while the sidebar’s z-index is 49.

Thank you

@itango8 ,

we do not support adjustment of z-index. Do note that this might break some UI and popup elements

@chunsiong.zoom thank you for your response.

I understand.

Is there a way to control the location of the Settings and Participants popups?

I had the same issue with the Chat popup, but could handle it by adding this to the init:

chat: {
popper: {
disableDraggable: true,
anchorElement: meetingSDKChatElement.value,
placement: ‘right’
}
}

Thank you