Where / how is a view's pageId set or specified?

Trying to find an existing Perspective view’s pageID or String ID.

Does anyone know where this unique identifier can be found?

The page ID is generated at runtime. What are you trying to do?

1 Like

I’m trying to find this (String id), a parameter for system.perspective.openPopup

pageID

You create your own and remember it where you need to.

1 Like

What Phil said. system.perspective.openPopup("myCoolConfirmationPopup"), and then later if you need to do something to it programmatically, system.perspective.closePopup("myCoolConfirmationPopup"). It’s up to you to make sure it’s unique across your session.

1 Like