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