Hide Perspective Popup Titlebar?

I’d like to be able to not show the popup titlebar for some popups. I don’t think this is currently possible?

If you don’t give it a title and disable show close button and draggable, I think the title bar is disabled.

3 Likes

Pascal is correct, using these settings will remove the title:

system.perspective.openPopup('name','view/view',{'payload':payload}, showCloseIcon = False, modal = True, draggable=False)

1 Like

Thanks!