English 中文(简体)
如何在同一表格中打开链接
原标题:How to open link in same tab from Power App / SharePoint list

我有一份权力申请,与“分享点”清单合并,希望在用户节省变动或取消变动时,在同一表格中公开链接。 我也增加了一条子,它涉及一个环节,但在不同表格中打开。

是否有办法在same tab开放链接。 当用户点击 but子、拯救或取消其its时?

Using Launch(“URL”) works for the button but it doesn’t open in the same tab. Launch(“URL”) also doesn’t work for OnSave or OnCancel, I’ve also tried Launch(“URL”, {}, LaunchTarget.Replace) but it doesn’t open a new tab at all and doesn’t do anything. The current code I have for the app is below:

Button OnSelect:
Launch(“URL”)

OnSave:
SubmitForm(SharePointForm);
Launch(“URL”)

OnCancel:
ResetForm(SharePointForm);
Launch(“URL”)
问题回答

如果你使用与电力供应公司定制的“共享点”清单,那么你就能够把一个不同的地点发射到同一个浏览器。 共享点集成将接口严格地保留在共享点。

然而,如果你将数据输入Canvas PowerApp,那么你就可以在On Success公司财产中使用这样的发射指令:

// some other stuff for saving
UpdateContext({ CurrentItem: Self.LastSubmit, editMode: false, newMode: false });
// launch another URL in the same tab
Launch("http://google.com",{},LaunchTarget.Replace)

“enter像

对于取消的指挥,你需要使用一个纽州,而不是形式财产。

在我的测试中,这部工程是罚款的。

NB: if you want to integrate the PowerApps form into the SharePoint list experience, you can create a JSON formatted column that launches the Canvas PowerApp with the list item ID as the parameter. That way, the integration is as seamless as with a SharePoint list form in the side panel.





相关问题
Updating external list from sharepoint workflow - error

I ve created page workflow to update data in external list: When I execute this workflow, I get an error. I don t know what causes the error: I ve read about permissions to the Sharepoint system ...

热门标签