When items are opened from my SharePoint list, I'd like the form to open directly into edit mode. Previously they were opening to the View Form, but now after some changes the Edit Form is the one that opens, but I am still required to click "Edit All" at top of the page before making changes. If I don't click the Edit All, I can't change any items. I'd like to be able to make changes directly after clicking the list item. Below is the current forumla I have in the SharePoint Integration "On Edit" and "On View" screens.
Set(SharepointFormMode,"EditForm")&EditForm(SharePointForm_Edit)&Navigate(FormScreen1_1,ScreenTransition.Fade)
Also, the DefaultMode is Edit.
Solved! Go to Solution.
Please consider changing your Formula to the following:
Set(SharepointFormMode,"EditForm");
EditForm(SharePointForm_Edit);
Navigate(FormScreen1_1,ScreenTransition.Fade)
You are using the & which concatenates strings. If you want multi line commands, separate with the semicolon.
I hope this is helpful for you.
Please consider changing your Formula to the following:
Set(SharepointFormMode,"EditForm");
EditForm(SharePointForm_Edit);
Navigate(FormScreen1_1,ScreenTransition.Fade)
You are using the & which concatenates strings. If you want multi line commands, separate with the semicolon.
I hope this is helpful for you.
That worked! Thank you.
Are there other settings that can affect this? I have the same formula in OnEdit and OnView under SharePointIntegration, with:
Set(SharePointFormMode,"EditForm"); EditForm('My Form Name'); Navigate('My Screen Name',ScreenTransition.None)
but when I open a list item from SharePoint it still always opens with the "Edit All" button at the top. It's a real problem because my users can edit the fields, and if they don't then click "Edit All" and then "Save", they lose all their information.
User | Count |
---|---|
168 | |
90 | |
74 | |
68 | |
57 |
User | Count |
---|---|
214 | |
155 | |
97 | |
89 | |
70 |