Hi,
I am using SharePointIntegration and I have my pages working correctly. I have a landing Screen (like a home screen) and the Form within it has its DefaultMode set to 'FormMode.New'. This is the only Form in the whole app that has this setting. When I click on the 'New' button on the top left of the Share Point List the Landing Screen displays correctly.
However, when I select an item in the Share Point list to View it, the Landing Screen ('FormMode.New) always appears for a few seconds, sometimes up to 10 seconds. It will then eventually navigate to the Form that is in View mode. I've tried many different solutions to try and fix this but it keeps the same behaviour.
I have the following set up;
Tree View - SharePointIntegration - OnView
Set( selectedLookupItem,
LookUp( 'NameOfList',
ID=SharePointIntegration.SelectedListItemID ));
If(selectedLookupItem.'Column1'.Value = "Example_1", Navigate(Screen_Example_1),
If(selectedLookupItem.'Column1'.Value = "Example_2", Navigate(Screen_Example_2),
etc
etc
))
So when an item is selected it's ID is taken and its fields are displayed. However, depending on the value within 'Column1' the user will be navigated to a particular Form in View mode. Above example shows Forms 'Screen_Example_1' and 'Screen_Example_2' but there are around 15 Forms in total that are also in View mode. I'm not sure if this is having any affect on the behaviour.
Tree View - SharePointIntegration - OnNew
Navigate(HiomePage);
Would appreciate if anyone could provide any assistance.
Thanks