I'm displaying a third party web page (client page) in a StageView, opened from an AdaptiveCard tabInfoAction:
{
type: "invoke",
title: "open in stageView",
value: {
type: "tab/tabInfoAction",
tabInfo: {
contentUrl: "example.com",
websiteUrl: "example.com",
name: "View",
entityId: "entityId",
},
},
}
I'd like to close the stage view
based on a user interaction via @microsoft/teams-js
. I can do that if displayed in a task module
by calling teamsjs.dialog.submit()
in the client code. Is there a similar way to do it in this context?