When submit a form I am using this: SubmitForm(SharePointForm1). Item is saved in SharePoint List.
But I want the users navigated to another site than the allitems.aspx.
i want them navigated to a blank page with a text. (Thanks for submitting the form)
Regards
Torben
Solved! Go to Solution.
Hi @torbenbj,
yes, that is possible with the launch command.
You should
1. create a SharePoint page for the Message "Thanks for submitting the form", save the Page URL,
2. Click Custom Form under PowerApps tab from the SharePoint List,
3. Click the SharePointIntegration, under the OnSave property, add the following code:
Lanuch("PageURL")
For example:
SubmitForm(SharePointForm1);Launch("https://tenant.sharepoint.com/Testing/SitePages/Thanks%20for%20Submitting!.aspx")
4. Once published to SharePoint list, make sure you have the Browser set to always allow pop out for your SharePoint site.
Doing this will allow the page naviagted to the "Thanks for submitting " page once new item has been created.
Regards,
Michael
Hi @torbenbj,
yes, that is possible with the launch command.
You should
1. create a SharePoint page for the Message "Thanks for submitting the form", save the Page URL,
2. Click Custom Form under PowerApps tab from the SharePoint List,
3. Click the SharePointIntegration, under the OnSave property, add the following code:
Lanuch("PageURL")
For example:
SubmitForm(SharePointForm1);Launch("https://tenant.sharepoint.com/Testing/SitePages/Thanks%20for%20Submitting!.aspx")
4. Once published to SharePoint list, make sure you have the Browser set to always allow pop out for your SharePoint site.
Doing this will allow the page naviagted to the "Thanks for submitting " page once new item has been created.
Regards,
Michael
I tried this but it opens up the specified URL in a new tab and it takes it back to the default view. Is there a way we can make this to work - When a user saves or edits and saves the form, they will be redirected to a different page or URL instead of the list at all. Thanks!
You know you can also use the OnSuccess option and then Notify ("Thanks for submitting the form")
OnSuccess works - I used Reset and then notify, so it stays in the same page after a succesful save.
However, But when the user clicks Cancel, it redirects them back to the 'AllItems' or the defalut view set.
We can't use OnFailure because there are validations for few fields in the form, so, If I just there is a validation error, we still want to have the user stay on the form with the user info they entered. If we use OnFailure - this takes into account everytime a validation fails as well.
If they click cancel, the user should not be redirected to the 'AllItems'/defalut view, but instead stay on the initial new form page after clearing everything they entered.
Hello Michael,
thanks for this information, I tried this:
SubmitForm(SharePointForm1); Launch("https://tenant.sharepoint.com/sites/.../Ticket-uebermittelt.aspx")
It submits the form, but there is no navigation to the created SharePoint site. At the SharePointIntegration, under the OnSave property it says: "unexpected signs. the form uses signs not as expected."
Any idea whats wrong here?
Thanks, Simon
User | Count |
---|---|
197 | |
123 | |
88 | |
48 | |
42 |
User | Count |
---|---|
282 | |
165 | |
138 | |
82 | |
74 |